class Muncher
Public Class Methods
munches(language = 'english')
click to toggle source
# File lib/muncher.rb, line 3 def self.munches(language = 'english') tranlator = Translator.new(language) tranlator.munches puts = "give me some munchiees!" food = gets.chomp puts "hmmm #{food} munch munch munch" end