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