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

Class with property with default value

  • property
class Person
  property name : String

  def initialize
    @name = "Default name"
  end
end

prs = Person.new
p! prs        # prs # => #<Person:0x7fa3aaae2eb0>
puts prs.name # Default name
prs.name = "Joe"
puts prs.name # joe