Skip to content

Instantly share code, notes, and snippets.

@taisyo7333
Created January 24, 2016 10:19
Show Gist options
  • Save taisyo7333/dde0b54e053ecc867c75 to your computer and use it in GitHub Desktop.
Save taisyo7333/dde0b54e053ecc867c75 to your computer and use it in GitHub Desktop.
Ruby Exception [retry]
# encoding: SJIS
a = 0
begin
b = 1 / a
rescue ZeroDivisionError
a += 1
retry
ensure
p b
end
# => 1
# ensure calls only once.
>ruby Code3-163.rb
ruby Code3-163.rb
1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment