class Namasthe
Public Class Methods
hi(language="indian")
click to toggle source
Say hi to the world!
Example:
>> Hola.hi("spanish") => hola mundo
Arguments:
language: (String)
# File lib/namasthe.rb, line 10 def self.hi(language="indian") translator = Translator.new(language) translator.hi end