Skip to content

Instantly share code, notes, and snippets.

@MikeSilvis
Created October 5, 2012 13:57
Show Gist options
  • Save MikeSilvis/3839924 to your computer and use it in GitHub Desktop.
Save MikeSilvis/3839924 to your computer and use it in GitHub Desktop.
@hello = false
@hello ||= "world"
puts @hello
> "world"
@hello = false
if defined? @hello
@hello
else
"world"
end
puts @hello
> false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment