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

9 months ago
  1. module Extra
  2. # Toto est fluo
  3. class Toto
  4. def ok; end
  5. # this is a barman
  6. def bar(ahaha, bzazaza, crezre)
  7. puts "#{ahaha}#{bzazaza}#{crezre}"
  8. end
  9. def candel
  10. bar('a', 'aezeaz')
  11. Toto
  12. end
  13. end
  14. end