NOCONTENT
| Keywords | |
|---|---|
| Purpose | Immediately terminate an instruction early with an exit code “Success, no content”. | 
| Description | Syntax //some statements NOCONTENT; NOCONTENT is an unconditional version of the  | 
| Examples | @users = Users.GetLoggedOnUsers();
// Return "success no content" if they are any logged in users
IF (@users)
    NOCONTENT;
ENDIF;
// ... otherwise do something which can only be done if no-one is logged on  | 
| Notes |