Getting Started | Documentation | Glish | Learn More | Programming | Contact Us |
Version 1.9 Build 1556 |
|
Normally a function's execution proceeds until the last statement of the function, as discussed in Chapter 6, page . If that statement is an expression then the value of the expression becomes the result of the function call; otherwise the result is F. A function can also prematurely terminate using the return statement, which has two forms:
return
return expressionThe first form results in a returned value of F; the second form returns the value of expression. (See Chapter 6, page , for examples.)