# File solution.rb, line 308 def get_word_vocalization sb = "" sb.force_encoding "UTF-8" vocal = get_prefixes_vocalizations() if(vocal!=nil) sb += vocal[0].to_s end s =get_stem_vocalization() if ( s != nil) sb+=s end vocal =get_suffixes_vocalizations() if(vocal!=nil) sb += vocal[0].to_s end return sb end