2 lines
72 B
Ruby
2 lines
72 B
Ruby
# short way to rescue any StandardError
|
|
quotient = 1 / 0 rescue "sorry"
|
# short way to rescue any StandardError
|
|
quotient = 1 / 0 rescue "sorry"
|