RosettaCodeData/Task/Exceptions/Logo/exceptions.logo

8 lines
143 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07: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