RosettaCodeData/Task/Exceptions/Logo/exceptions.logo
2023-07-01 13:44:08 -04:00

7 lines
143 B
Text

to div.checked :a :b
if :b = 0 [(throw "divzero 0)]
output :a / :b
end
to div.safely :a :b
output catch "divzero [div.checked :a :b]
end