class Privet::Translator

Public Class Methods

new(language) click to toggle source
# File lib/privet/translator.rb, line 2
def initialize(language)
        @language = language
end

Public Instance Methods

hi() click to toggle source
# File lib/privet/translator.rb, line 6
def hi
        case @language
                when 'spanish'
                        'Hola mundo'
                when 'russian'
                        'Привет, мир'
                else
                        'Hello world'
        end
end