Help for this page

Select Code to Download


  1. or download this
    begin();
    stuff();
    if (something went wrong) { return }
    more_stuff();
    end();
    
  2. or download this
    begin();
    do_stuff();
    end();
    ...
        if (something went wrong) { return }
        more_stuff();
    }