RosettaCodeData/Task/Program-termination/Ruby/program-termination-1.rb

9 lines
80 B
Ruby
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
if problem
exit(1)
end
# or
if problem
abort # equivalent to exit(1)
end