Help for this page

Select Code to Download


  1. or download this
    while (something())
    {
         # Lots of stuff, nested functions, etc.
    ...
    # Post-Processing
    more_stuff();
    
  2. or download this
    PROCESS:
    while (something())
    {
    ...
    }
    
    more_stuff();
    
  3. or download this
    _10: print "Hello";
    _20: goto _10;