Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w -I"/home/chromatic/perl"
    
    use strict;
    ...
    require "/home/chromatic/perl/Sub.pm";
    $tester = Sub->new;
    $tester->game;
    
  2. or download this
    #!/usr/bin/perl -w
    
    package Sub;
    ...
    }
    
    1;