Skip to content

Instantly share code, notes, and snippets.

@jaredatron
Created January 7, 2010 01:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jaredatron/270892 to your computer and use it in GitHub Desktop.
Save jaredatron/270892 to your computer and use it in GitHub Desktop.
love = 1
puts love
class Face
love = 5
puts love
Proc.new{
# I want
# var love = 6
# here
love = 6
puts love
}.call
puts love
end
puts love
love = 7
puts love
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment