Help for this page

Select Code to Download


  1. or download this
    perl -Ilib -MSyringe -e1
    
  2. or download this
    #!perl -w
    use strict;
    use Syringe;
    
    print "OK\n";
    
  3. or download this
    package My::Module;
    BEGIN { print "Loading " . __PACKAGE__ . " from " . __FILE__ . "\n"};
    ...
    print "Loaded " . __PACKAGE__ . " from " . __FILE__ . "\n";
    1;
    __END__