You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
239 B
16 lines
239 B
module Extra
|
|
# Toto est fluo
|
|
class Toto
|
|
def ok; end
|
|
|
|
# this is a barman
|
|
def bar(ahaha, bzazaza, crezre)
|
|
puts "#{ahaha}#{bzazaza}#{crezre}"
|
|
end
|
|
|
|
def candel
|
|
bar('a', 'aezeaz')
|
|
Toto
|
|
end
|
|
end
|
|
end
|