EXIT elements intended to terminate/abort a program (usual keyword "exit") are not translated to Python. Instead the code will contain a comment "FIXME: unsupported jump/exit instruction!".
It is possible, however, to export it as sys.exit(<code>) instruction (and to generate an import sys clause if such a case occurs).
EXIT elements intended to terminate/abort a program (usual keyword "exit") are not translated to Python. Instead the code will contain a comment "FIXME: unsupported jump/exit instruction!".
It is possible, however, to export it as
sys.exit(<code>)instruction (and to generate animport sysclause if such a case occurs).