여러분이 알고 사랑하는 Ruby corelib가 포함되어 있습니다. 런타임만큼 빠르며 설치 공간이 작습니다.
class User
attr_accessor :name
def initialize(name)
@name = name
end
def admin?
@name == 'Admin'
end
end
user = User.new('Bob')
# the output will go to your browser's console
puts user
puts user.admin?
등록된 댓글이 없습니다.