Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    
    my $eg = test->new();
    print "All good!";  # nope...
    
  2. or download this
    package test;
    use Mouse;
    ...
    my $eg = test->new();
    
    print $eg;