Skip to content

Instantly share code, notes, and snippets.

@coderberry
Created August 23, 2012 03:06
Show Gist options
  • Select an option

  • Save coderberry/3431725 to your computer and use it in GitHub Desktop.

Select an option

Save coderberry/3431725 to your computer and use it in GitHub Desktop.
w2-e6.rb
mclovin = {
"Name" => "McLOVIN",
"City" => "HONOLULU",
"DOB" => "06/03/1981",
"Address" => {
"Street" => "892 MOMONA ST",
"City" => "HONOLULU",
"State" => "HI",
"Zip" => "96820"
},
"Weight" => 150,
"Class" => 3,
"Endorsed" => true
}
>> mclovin["Weight"]
=> 150
>> mclovin["Address"]
=> {"Street"=>"892 MOMONA ST", "City"=>"HONOLULU", "State"=>"HI", "Zip"=>"96820"}
>> mclovin["Address"]["City"]
=> "HONOLULU"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment