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

Return4() public method

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