Help for this page

Select Code to Download


  1. or download this
    use FTest;
    
    ...
    
    print foreach $test->foo;
    print for     $test->foo;
    
  2. or download this
    package FTest;
    
    ...
    sub foo { return 1; }
    
    1;