Help for this page

Select Code to Download


  1. or download this
    package Gl::Df;
    
    ...
    sub tst1 { tst2(); print 1 ;}
    1;
    
  2. or download this
    package Gl::Uf;
    
    ...
    sub tst2 { tst1();print 2 }
    
    1;
    
  3. or download this
    use strict;
    use warnings;
    ...
    
    tst1();
    tst2();
    
  4. or download this
    Undefined subroutine &Gl::Uf::tst1 called at Gl/Uf.pm line 14.