Iterating Through Hash Elements
x = { "a" => 1, "b" => 2 } x.each { |key, value| puts "#{key} equals #{value}" }