Help for this page

Select Code to Download


  1. or download this
    sub hello_world {
       print "Hello World!\n";
    }
    1;
    
  2. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    require 'test1.pl';
    
    &hello_world;
    
  3. or download this
    Hello World!