Ruby Hash add key-value pairs
h = Hash.new
puts h
h["fname"] = "Foo"
h["lname"] = "Bar"
puts h
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
h = Hash.new
puts h
h["fname"] = "Foo"
h["lname"] = "Bar"
puts h