Help for this page

Select Code to Download


  1. or download this
    # stuff.pl
    $fred = 'foo';
    $barney = 'bar';
    # ...
    
  2. or download this
    #! /usr/bin/perl
    # no strict unless "stuff.pl" my's everything.
    # (In which case all the vars will be lexical here.)
    do 'stuff.pl' or die "Couldn't read the stuff";
    print $fred, "\n";