Help for this page

Select Code to Download


  1. or download this
        my ( $foo, %bar, $bax );
    
        Initialize_child($foo,\%bar,$bax);
        do_child_stuff($foo,\%bar,$bax);
    
  2. or download this
        sub Init_Child {
            my %params=@_;
            #blah
        }
        Init_Child(name=>$foo,attribs=>\%bar);