Help for this page

Select Code to Download


  1. or download this
    $curr_struct_pos = "string";
    %$curr_struct_pos;
    
  2. or download this
    #assume strict and warnings!
    my %hash=(string=>{});
    
  3. or download this
    $hash{string}->{$key}->[$index]=$whatever;
    
  4. or download this
    $path = "Global".$type.
            "Def:".$curr_struct_pos->{$type}[$a].
            ".def";
    
  5. or download this
    sub dump_symbol_table {
        print "SYMBOL TABLE\n---------------------------------------------
    +----------\n";
    ...
    
    BEGIN { dump_symbol_table }
    END   { dump_symbol_table }