NOP Design Home Page
Documentation
TOC/Index
Search
Downloads



Return

Returns from a function, or ends execution

Returns from a function to caller, or if called outside of a function, ends program execution.
Return should be passed an expression which it will return to the caller.

Sample Source

<SIML Sample>
  Say "Hello World"
  Return 0
  Say "Will never be seen"
</SIML>

Call "Sample"

Related Function(s):
   End;

Minimum version: 1.0