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

Multiple assignment

a, b = 2, 3
puts a # 2
puts b # 3

a, b = b, a
puts a # 3
puts b # 2