Skip to content

Instantly share code, notes, and snippets.

@matbhz
Created June 27, 2013 21:01
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/5880366 to your computer and use it in GitHub Desktop.
Save matbhz/5880366 to your computer and use it in GitHub Desktop.
irb(main):001:0> var = "hi"
=> "hi"
irb(main):003:0> h = { :a => 1, :b => var}
=> {:a=>1, :b=>"hi"}
irb(main):004:0> var
=> "hi"
irb(main):005:0> h
=> {:a=>1, :b=>"hi"}
irb(main):006:0> var = "bye"
=> "bye"
irb(main):007:0> h
=> {:a=>1, :b=>"hi"}
irb(main):008:0>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment