Skip to content

Instantly share code, notes, and snippets.

@tylerritchie
Created April 28, 2015 23:00
Show Gist options
  • Select an option

  • Save tylerritchie/b80c22b566bb7cc2c0ed to your computer and use it in GitHub Desktop.

Select an option

Save tylerritchie/b80c22b566bb7cc2c0ed to your computer and use it in GitHub Desktop.
wat.rb
defined? foo
#=> nil
if false
foo = 1
end
defined? foo
# => "local-variable"
foo
# => nil
#see also: http://seejohncode.com/2012/07/31/ruby-gotcha-single-line-conditionals/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment