Help for this page

Select Code to Download


  1. or download this
    package Parent;
    require ('./parent.cfg');
    ...
    @ISA=('Child');
    require ('./grandchild.cfg');
    
  2. or download this
    $config={
        string=>"bla",
    ...
        },
    # etc, put any valid perl data structure here    
    };
    
  3. or download this
    in parent.cfg
    #...
    ...
    in child.cfg
    #...
        list=>['val1','val2','val3','FOO','BAR'],
    
  4. or download this
    parent.cfg:
    %config=(
    ...
    config_remove('DontNeedThisHere');
    config_push('array',$newval,$anotherval);
    # and some other data manipulation routines