Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
    sub foo {
        return('foo');
    }
    
  2. or download this
    prompt > perl -MO=Deparse test.pl
    my $a = &foo();
    ...
    }
    test.pl syntax OK
    prompt >