Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
    
    print "This", "is", "a", "test\n";
    
  2. or download this
    a... list... of... things
    Thisisatest
    
  3. or download this
    use strict;
    
    ...
       $usefuldata = 2; # in real life, lots of logic here
      }
      insert_into_database($usefuldata)
    
  4. or download this
    use strict;
    
    ...
    
    # Now we can calculate $usefuldata exactly where we want it
    insert_into_database( get_useful_data() )