RosettaCodeData/Task/Exceptions/REXX/exceptions.rexx
2026-04-30 12:34:36 -04:00

13 lines
207 B
Rexx

-- 25 Apr 2026
include Setting
say 'EXCEPTIONS'
say version
say
say 'Square root of 10 is' SqRt(10)/1
say 'Square root of 0 is' SqRt(0)
say 'Square root of -1 is' SqRt(-1)
exit
-- Abend; Sqrt
include Math