Skip to content

Instantly share code, notes, and snippets.

@taisyo7333
Created January 24, 2016 09:18
Show Gist options
  • Save taisyo7333/8e264b78cfe78371e74a to your computer and use it in GitHub Desktop.
Save taisyo7333/8e264b78cfe78371e74a to your computer and use it in GitHub Desktop.
Ruby Exception
# encoding: SJIS
begin # run
p 1
rescue # Do not run , because of no-execption occurs.
p 0
else # run , because of no-execption occurs.
p 2
ensure # run always at last.
p 3
end
>ruby Code3-158.rb
ruby Code3-158.rb
1
2
3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment