Skip to content

Instantly share code, notes, and snippets.

@greghelton
Created December 26, 2011 20:04
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 greghelton/1522023 to your computer and use it in GitHub Desktop.
Save greghelton/1522023 to your computer and use it in GitHub Desktop.
Using a Ruby Hash
inst_section = {
:collie => 'furry',
:parakeet => 'feathered',
:cow => 'bovine',
:ant => 'stinging',
:snake => 'slithering',
:elephant => 'large'
}
puts inst_section[:ant]
puts inst_section[:cow]
inst_section.each { |key, value| puts "The #{key} is a #{value} animal"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment