Skip to content

Instantly share code, notes, and snippets.

@tokenvolt
Last active August 29, 2015 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tokenvolt/f5e278d8bff44a3b12c1 to your computer and use it in GitHub Desktop.
Save tokenvolt/f5e278d8bff44a3b12c1 to your computer and use it in GitHub Desktop.
class InterestingBehaviour
def perform
if var1.blank?
var1 = 56
end
pp var1 # prints nil
end
def var1
@var1 = 1000
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment