Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@matbhz
Created June 27, 2013 20:51
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 matbhz/5880297 to your computer and use it in GitHub Desktop.
Save matbhz/5880297 to your computer and use it in GitHub Desktop.
irb(main):032:0> a = 1
=> 1
irb(main):033:0> b = a
=> 1
irb(main):034:0> a = 2
=> 2
irb(main):035:0> b
=> 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment