Help for this page

Select Code to Download


  1. or download this
    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
    
  2. or download this
    my $y = testing.newarray((c => 3, d => 4));   # Looks okay, and works