Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
    print "My Test\n";
    $m->Func1();
    $m->Func2("Fluffy", 5);
    
  2. or download this
    package mymodule;
    
    ...
        my ($class, $name, $value) = @_;
        print "hi $name, value $value\n";
    }
    
  3. or download this
    My Test
    Hi there
    hi Fluffy, value 5