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

Return6() public method

public Return6 ( ) : void
return void
        public void Return6() {
            TestOutput(@"
x = while true do
  break 'a', 'b', *['A', 'B'], 1 => 2, 3 => 4
end
puts x
", @"
a
b
A
B
{1=>2, 3=>4}
");
        }
Tests