Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save coderberry/3431729 to your computer and use it in GitHub Desktop.
w2-e5.rb
mclovin = {
"Name" => "McLOVIN",
"City" => "HONOLULU",
"DOB" => "06/03/1981"
}
>> mclovin["Name"]
=> "McLOVIN"
>> mclovin["City"]
=> "HONOLULU"
>> mclovin["DOB"]
=> "06/03/1981"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment