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

Return5() public method

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