Skip to content

Instantly share code, notes, and snippets.

@nathanmpark
Created October 2, 2015 07:25
Show Gist options
  • Save nathanmpark/52ff757c5846bcd5e51d to your computer and use it in GitHub Desktop.
Save nathanmpark/52ff757c5846bcd5e51d to your computer and use it in GitHub Desktop.
# Initialize Hash
my_hash = {}
# Example hash
my_hash = {
:dog => "Leo",
:Birthday => "August, 24th 1990",
:Zodiac => "Virgo"
}
# Hashes display values based on the keys referenced
my_hash[:dog] = Leo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment