Help for this page

Select Code to Download


  1. or download this
    sub foo {
      ($foo_cache{...} ||=
    ...
         };
       )->();
    }
    
  2. or download this
    my %foo_cache;
    sub foo {
    ...
       :
       $foo_cache{$index}[-1];
    }
    
  3. or download this
    sub list {
      wantarray ? @_ : $_[-1];
    }