fork(1) download
  1. module Teste
  2. def minha_funcao
  3. puts 'função'
  4. end
  5. end
  6. puts Teste.method_defined?(:minha_funcao)
  7. #puts Teste.method_defined?(minha_funcao)
  8.  
  9. #https://pt.stackoverflow.com/q/527833/101
Success #stdin #stdout 0.01s 6224KB
stdin
Standard input is empty
stdout
true