Help for this page

Select Code to Download


  1. or download this
    package mod1;
    use strict;
    ...
      %line = (this => "line");
    }
    1;
    
  2. or download this
    package mod2;
    use strict;
    ...
       $time = time();
    }
    1;
    
  3. or download this
    use strict;
    use vars qw(%line $time);
    ...
    # This will print:
    # that,line2
    print join(",",%line),"\n";