Help for this page

Select Code to Download


  1. or download this
    <part name="foo">
       <part name="bar"/>
       <part name="bar2"/>
    </part>
    
  2. or download this
    <section name="foo">
       <subsection name="bar">
       <subsection name="baz">
    </section>
    
  3. or download this
    my $foo = new section( name => "foo" ;
    $foo->addSubsection( "bar" );
    $foo->addSubsection( "baz" );
    $foo->startSystem;