RosettaCodeData/Task/Exceptions/ALGOL-68/exceptions-4.alg

8 lines
176 B
Plaintext

PROC raise foo event(REF OBJECTFOO foo)BOOL:
IF mend foo(foo) THEN
TRUE # continue #
ELSE
except foo event
FALSE # OR fall back to default event routine #
FI