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

Create empty set

names = Set(String).new
puts names.empty?

names.add("Joe")
puts names
puts names.empty?