Help for this page

Select Code to Download


  1. or download this
    $GLOBAL1 = do_stuff($GLOBAL0, $GLOBAL1);
    
  2. or download this
    ... set globals ...
    ...
    do_stuff;
    ...
    ... use modified globals
    
  3. or download this
    &read_input;
    &calculate_this;
    ...
    sub read_input { ... }
    sub write_output { ... }
    sub calculate_that { ... }