Help for this page

Select Code to Download


  1. or download this
    begin();
    do_stuff();
    ...
        return status;
    }
    
  2. or download this
    begin();
    do_stuff();
    ...
    sub do_stuff {
        return stuff() and more_stuff();
    }