Help for this page

Select Code to Download


  1. or download this
        print STDOUT $foo;
    
  2. or download this
        print $foo;
    
  3. or download this
    sub prepare_foo_print {
        my ($foo, $file) = @_;
    ...
    sub print_whatever {
        print shift;
    }