Help for this page

Select Code to Download


  1. or download this
    sub foo {
        my $arg = shift @_;
    ...
    
        return $cache{$arg} = something_costly( $arg );
    }
    
  2. or download this
    use Immutable::UntestableCode qw( foo );
    
    ...
    is( 1, $calls );
    foo( 1 );
    is( 1, $calls );