class Fish
def self.general_overview()
return("Fish are animals that live in the sea")
end
def fins(bool)
@bool = bool
end
end
Fish.general_overview
Fish.fins(25)
nemo = Fish.new
nemo.fins(4)
X nemo.general_overview
Conteúdo para você se capacitar em programação