Help for this page
class testing { method newhash(*%args) { ... my $x = testing.newhash(a => 1, b => 2); # Messes with specified +order my $y = testing.newarray('c' => 3, 'd' => 4); # Looks okay, and work +s
my $y = testing.newarray((c => 3, d => 4)); # Looks okay, and works