Help for this page

Select Code to Download


  1. or download this
    package Foo;
    sub sort($&) {
    ...
    
    package Bar;
    Foo->sort({ $a cmp $b });           <-- Sub compiled in another
    
  2. or download this
    package Foo;
    sub sort($&) {
    ...
       die $@ if $@;
       ...
    }