Help for this page

Select Code to Download


  1. or download this
    sub two_hard { @_ = @_[0,1]; @_ }
    sub two_easy {      @_[0,1]     }
    
    print "two easy: " . two_easy( 'one', 'two' ) . "\n";
    print "two hard: " . two_hard( 'one', 'two' ) . "\n";
    
  2. or download this
    two easy: two
    two hard: 2