Skip to content

Instantly share code, notes, and snippets.

@darrinholst
Created September 11, 2009 16:30
Show Gist options
  • Save darrinholst/185399 to your computer and use it in GitHub Desktop.
Save darrinholst/185399 to your computer and use it in GitHub Desktop.
[~]> irb
irb(main):001:0> {'a' => 1, 'b' => 2}
=> {"a"=>1, "b"=>2}
irb(main):002:0> {'b' => 2, 'a' => 1}
=> {"a"=>1, "b"=>2}
[~]> jirb
irb(main):001:0> {'a' => 1, 'b' => 2}
=> {"a"=>1, "b"=>2}
irb(main):002:0> {'b' => 2, 'a' => 1}
=> {"b"=>2, "a"=>1}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment