QUIT
The QUIT instruction causes Enrichment to immediately halt execution of the current rule file section. It can be useful for exiting complicated logic when an error occurs. For example:
IF %%x = %%y THEN
DO
%%String = Read(DD:FILE)
IF %%String = 'Last line' THEN
MESSAGE(1, W, “Unexpected last line in :FILE”)
QUIT
ENDIF
LOOP WHILE %%String = 'Car'
ENDIF