IronRuby.Tests.Tests.Scenario_RubyThreads1 C# (CSharp) Method

Scenario_RubyThreads1() public method

public Scenario_RubyThreads1 ( ) : void
return void
        public void Scenario_RubyThreads1() { 
            AssertOutput(delegate() {
                CompilerTest(@"
t = Thread.new 1,2,3 do |a,b,c| 
    puts a,b,c 
end
t.join
puts 4
");
            }, @"
1
2
3
4
");
        }
Tests