Skip to content

Instantly share code, notes, and snippets.

@radavis
Created August 22, 2013 16:10
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 radavis/6309326 to your computer and use it in GitHub Desktop.
Save radavis/6309326 to your computer and use it in GitHub Desktop.
Game of Thrones madness
characters = {
"Tyrion Lannister" => "House Lannister",
"Jon Snow" => "Night's Watch",
"Hodor" => "House Stark",
"Stannis Baratheon" => "House Baratheon",
"Theon Greyjoy" => "House Greyjoy"
}
characters.keys.each do |name|
puts "#{name} represents the #{characters[name]}"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment