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

RubyBlocks_Params2() public method

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

y { |x0,x1,x2,x3,x4,x5,x6,x7,*z| print x0,x1,x2,x3,x4,x5,x6,x7,z[0],z[1]; }
", @"
0123456789
");
        }
Tests