8 lines
80 B
Ruby
8 lines
80 B
Ruby
if problem
|
|
exit(1)
|
|
end
|
|
|
|
# or
|
|
if problem
|
|
abort # equivalent to exit(1)
|
|
end
|