Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Ruby hash list keys

h = Hash.new
puts h
h["fname"] = "Foo"
h["lname"] = "Bar"
puts h

h.keys.each do|key|
  puts "#{key} - #{h[key]}"
end