Help for this page

Select Code to Download


  1. or download this
    
    use abstractor;      #there is no real name yet
    ...
    
    $output->compute("<a></a> <b></b> <c></c>");
    
  2. or download this
    
    $output->add_definitions ( { a => '$result = "HELLO"',
    ...
    
    #the interpreter ignores tags that it does not have #definitions for
    
  3. or download this
       <html>
         <head></head>
    ...
           HELLO WORLD!!
         </body>
       </html>
    
  4. or download this
    
    $output->add_definitions ( { a => '$result = "HELLO"' });
    ...
    print $output->compute("<a></a> <a></a> <a></a>\n");
    print $output->compute("<a><a><a></a></a></a>\n");
    
  5. or download this
    
    $output->add_definitions 
    ...
    
    <code>
       <html><body>HELLO WORLD!!</body></html>