RosettaCodeData/Task/Exceptions/Logo/exceptions.logo

8 lines
143 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
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