Help for this page

Select Code to Download


  1. or download this
    package Foo;
    
    ...
    print $hello->("Foo Mod init"),"\n";
    
    1;
    
  2. or download this
    use strict;
    use warnings;
    ...
    use Foo ('$hello');
    
    print $hello->('test'),"\n";