Help for this page

Select Code to Download


  1. or download this
    my  $lexical="Value";
    our $dynamic="Value";
    
  2. or download this
    #assuming warnings and strict
    our $Variable="Variable";
    ...
    print @Other_Variable;
    print Other_Variable();
    print Other_Variable "Written to Other_Variable at ".localtime();
    
  3. or download this
    sub dump_symbol_table {
        print "SYMBOL TABLE\n---------------------------------------------
    +----------\n";
    ...
    
    BEGIN { dump_symbol_table }
    END   { dump_symbol_table }
    
  4. or download this
          Other_Variable = '*main::Variable'   
                        ...
    ...
                        ...
                       \ = '*main::\'          
                       _ = '*main::_'