Help for this page

Select Code to Download


  1. or download this
    use strict;
    
    ...
    
    my $res = some_func();
    print $messages{ $res }, "\n";
    
  2. or download this
    use strict;
    
    ...
        no strict 'refs';
        print &$res(), "\n";
    };