Help for this page

Select Code to Download


  1. or download this
    # cat.pl
    use strict;
    ...
    my $walkable = defined &{ 'walk' };
    undef &{ 'walk' };
    &{ 'run' };
    
  2. or download this
    $ perl cat.pl
    Can't use string ("run") as a subroutine ref while "strict refs" in us
    +e at cat.pl line 9.