Help for this page

Select Code to Download


  1. or download this
    ~>cat x.pl
    use y;
    use z;
    ...
    ~>perl x.pl
    Undefined subroutine &z::global_sub called at z.pm line 5.
    
  2. or download this
    ~>cat x.pl
    use y;
    use z;
    ...
    ~> perl x.pl
    global_sub working!