====== return ====== ===== Description ===== Terminate execution of a script and return a value to the caller. ===== Function prototype ===== void return ===== Arguments ===== ^ Name ^ Type ^ Comment ^ | //rval// | variant | The value to be returned to the caller. | ===== Return value ===== None. ===== Example ===== return false ===== Comments ===== This function may be used in conjunction with [[plugins:general:zeoscript:reference:functions:runscriptfile|RunScriptFile]] to create programs from multiple script files. ===== See also ===== * [[plugins:general:zeoscript:reference:functions:runscriptfile|RunScriptFile]] * [[plugins:general:zeoscript:reference:functions:assert|Assert]]