Next: x1f4_fini_program, Previous: x1f4_call_routine, Up: Imperative Language Interpreter Functions [Index]
extern int x1f4_ever_program (void *program, void *output);
The x1f4_ever_program
function executes the program
program.
See Imperative Program Execution.
If successful, the function stores the evaluation result of the last program
statement at the address indicated by output
and returns 0
. Non
zero is returned for failure. The statement would be a ‘return’
introduced one. The completion syntax when parsing the program would have
indicated that the last statement of the program is ‘return’ introduced.
See Imperative Language Syntax.
See Program Completions.
See Functions.