SAY

 ────SAY──────┬──────────────┬────;───────────
                └──expression──┘

SAY is used to write to the output stream the result of evaluating expression. The result is usually displayed to the user, but the output destination can depend on the implementation. The result of expression can be of any length.

Notes:

Example:

data=100Say data 'divided by 4 =>' data/4
/* Would display: "100 divided by 4 => 25"  */


[Back: RETURN]
[Next: SELECT]