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