10 lines
105 B
Ruby
10 lines
105 B
Ruby
|
|
class Demo
|
||
|
|
#public methods here
|
||
|
|
|
||
|
|
protected
|
||
|
|
#protect methods here
|
||
|
|
|
||
|
|
private
|
||
|
|
#private methods
|
||
|
|
end
|