class AnotherHola

The main AnotherHola driver

Public Class Methods

hi(language = "english") click to toggle source

Say hi to the world!

Example:

>> AnotherHola.hi("spanish")
=> hola mundo

Arguments:

language: (String)
# File lib/another_hola.rb, line 12
def self.hi(language = "english")
  translator = Translator.new(language)
  translator.hi
end