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

RubyBlocks_Params1() public method

public RubyBlocks_Params1 ( ) : void
return void
        public void RubyBlocks_Params1() {
            TestOutput(@"
def y; yield 0,1,2,3,4,5,6,7,8,9; end

y { |x0,x1,x2,x3,x4,x5,x6,x7,x8,x9| print x0,x1,x2,x3,x4,x5,x6,x7,x8,x9 }
", @"
0123456789
");
        }
Tests