Help for this page

Select Code to Download


  1. or download this
    sub returns_rtwo { return reverse qw[ foo bar ]; }
  2. or download this
    #!/usr/bin/perl -w
    
    use strict;
    ...
    
    foo(bar());
    foo_p(bar());
    
  3. or download this
    sub bar { return my @foo = bam(); }