Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    
    use strict;
    ...
    }
    print "test:\t$test::first\t$test::second\n";
    print "test2:\t$test2::first\t$test2::second\n";
    
  2. or download this
    #!/usr/bin/perl -w
    use strict;
    
    ...
    package test;
    
    print "One: $one\tTwo: $two\tThree: $three\n";