RosettaCodeData/Task/Assertions/REXX/assertions-2.rexx
2026-02-01 16:33:20 -08:00

14 lines
242 B
Rexx

-- 8 Sep 2025
include Setting
say 'ASSERTIONS'
say version
say
a=41
call Assert a = 41
say 'This line is executed'
call Assert a = 42,'The Answer to the Ultimate Question must be Forty-Two'
say 'This line is not executed'
exit
include Math