Skip to content

Instantly share code, notes, and snippets.

View danielrose7's full-sized avatar

Daniel Rose danielrose7

View GitHub Profile
class Mountain
attr_accessor :name, :height, :summit_attempts
def initialize(name, height)
@name = name
@height = height.to_s
@summit_attempts = 0
end
def climb