Skip to content

Instantly share code, notes, and snippets.

@taisyo7333
Created January 24, 2016 10:26
Show Gist options
  • Save taisyo7333/0c37d62c4aaa4b9bc161 to your computer and use it in GitHub Desktop.
Save taisyo7333/0c37d62c4aaa4b9bc161 to your computer and use it in GitHub Desktop.
Ruby throw - catch
# encoding: SJIS
def foo
throw :exit
end
catch(:exit) {
foo
p 1 # Do not call
}
p 2
# => 2
>ruby Code3-165.rb
ruby Code3-165.rb
2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment