1 2 3 4 5 6 7 8 9 10
# Commento class Prova def say something=nil something || "something" end end a = Prova.new a.say a.say "something else"