RosettaCodeData/Task/Exceptions/REXX/exceptions.rexx

14 lines
207 B
Rexx
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
-- 25 Apr 2026
2026-02-01 16:33:20 -08:00
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
2026-04-30 12:34:36 -04:00
-- Abend; Sqrt
2026-02-01 16:33:20 -08:00
include Math