lib/hola_galfus.rb in hola_galfus-0.0.0 vs lib/hola_galfus.rb in hola_galfus-0.0.1

- old
+ new

@@ -1,5 +1,9 @@ class Hola - def self.hi - puts "Hello world!" + def self.hi(language = "english") + translator = Translator.new(language) + translator.hi end end + +require_relative 'hola/translator' +