class PigLatinRb::ConsonantHandler

Public Class Methods

new(word) click to toggle source
# File lib/pig_latin_rb/consonant_handler.rb, line 4
def initialize(word)
  @char_array = word.chars
end

Public Instance Methods

print_pig_latin() click to toggle source