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

Macro - with parameter and placeholder

macro add_one_to(name)
  {{name}} += 1
end

x = 1
y = 1
puts x
puts y
add_one_to(x)
add_one_to(x)
add_one_to(x)
add_one_to(y)
puts x
puts y