Help for this page

Select Code to Download


  1. or download this
    # client code
    
    use NiftySuperPack;
    
    whooo("hey");            # exported function
    my $obj = Nifty->new();  # where did that constructer come from?
    
  2. or download this
    # NiftySuperPack.pm
    
    # There *is* no package NiftySuperPack!
    ...
      no strict;
      *{caller() . "::whooo"} = \&Nifty::Utils::whooo; # forced export
    }