DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Using .NET 4.0's Task Parallel Library With IronRuby 1.1
require 'mscorlib'
include System::Threading
include System::Threading::Tasks
Parallel.For(0, 100, lambda { |a| puts a })





