class HolaZfine

Public Class Methods

bye() click to toggle source
# File lib/hola_zfine.rb, line 6
def self.bye
  puts "cyah guy"
end
hi(language = "spanish") click to toggle source
# File lib/hola_zfine.rb, line 2
def self.hi(language = "spanish")
  translator = Translator.new(language)
  translator.hi
end