class template : Class Defintion « Class « Ruby
- Ruby
- Class
- Class Defintion
class template
class Person
def anyone_can_access_this
# ...
end
private
def this_is_private
# ...
end
public
def another_public_method
# ...
end
end
Related examples in the same category