Help for this page

Select Code to Download


  1. or download this
    # mod.pm
    package mod;
    ...
    1;
    __DATA__
    some data
    
  2. or download this
    # script.pl
    BEGIN { print("Before 'use mod;'\n"); }
    use mod;
    BEGIN { print("After 'use mod;'\n"); }
    use mod;
    
  3. or download this
    Before 'use mod;'
    some data
    loaded
    After 'use mod;'