class Zdravej
Public Class Methods
hi(language = '')
click to toggle source
Say hi to the world!
Example:
>> Zdravej.hi('') => Hello world
Arguments:
language: (String)
# File lib/zdravej.rb, line 10 def self.hi(language = '') tr = Translator.new(language) tr.hi end