Help for this page

Select Code to Download


  1. or download this
    print sort sub { print "Args: @_\n"; @_ }->(qw(one two three))
    
  2. or download this
    sub byfoo { print "Args: $a $b\n"; @_ }
    print sort byfoo(qw(one two three));