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

18 lines
257 B
Text

pickyPicky =: verb define
if. y-:'bad argument' do.
throw.
else.
'thanks!'
end.
)
tryThis =: verb define
try.
pickyPicky y
catcht.
'Uh oh!'
end.
)
tryThis 'bad argument'
Uh oh!