Help for this page

Select Code to Download


  1. or download this
    #!perl
    # GLOBAL DEFINITIONS
    ...
    # END{}
    # main() equivelent.
    __DATA__
    
  2. or download this
    my $var;
    sub foo {$var++; #ie code}
    ...
    # code
    # ....
    __DATA__
    
  3. or download this
    { #Anonymous block for the following static lexicals:
      my $static_scalar;
    ...
      sub push_stack { push @static_array,@_}
      sub pop_stack  { pop @stack}
    } #End anonymous block
    
  4. or download this
    use Some::Class;
    sub sna{}
    ...
    # code
    # ....
    __DATA__