Help for this page

Select Code to Download


  1. or download this
    > perl -MO=Deparse -e "sub foo($); sort foo(42);"
    sort foo 42
    
  2. or download this
    > perl -MO=Deparse -e "sub foo($){44,33}; print for sort( foo(42), );"
    sub foo ($) {
    ...
    > perl -wle "sub foo($){44,33}; print for sort( foo(42), );"
    33
    44