Help for this page

Select Code to Download


  1. or download this
    ##### a.pm #####
    package a;
    ...
    }
    
    1;
    
  2. or download this
    ##### b.pm #####
    package b;
    ...
    
    1;
    
  3. or download this
    ### test.pl ###
    #!/usr/bin/perl
    ...
    
    use a;
    
  4. or download this
    
    import in b called from a::BEGIN
    import in a called from main::BEGIN