Skip to content

Instantly share code, notes, and snippets.

@justuseapen
Created November 21, 2013 15:55
Show Gist options
  • Save justuseapen/7584183 to your computer and use it in GitHub Desktop.
Save justuseapen/7584183 to your computer and use it in GitHub Desktop.
characters = {
"Tyrion Lannister" => "House Lannister",
"Jon Snow" => "Night's Watch",
"Hodor" => "House Stark",
"Stannis Baratheon" => "House Baratheon",
"Theon Greyjoy" => "House Greyjoy"
}
characters.each do |character, org|
puts "#{character} represents #{org}."
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment