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

Return8() public method

public Return8 ( ) : void
return void
        public void Return8() {
            TestOutput(@"
def foo
  return *$x = [1,2]
end
$y = foo

puts $x.object_id == $y.object_id
puts $x.inspect
", @"
true
[1, 2]
");
        }
Tests