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

Singleton using class properties with default values

  • class_property
class Options
  class_property repetition = 0
  class_property url = ""
  class_property verbose = false
end

puts Options.repetition
Options.repetition = 3
puts Options.repetition
puts Options.repetition + 1