sanoj

# the secret crypter # me = SpeakLikeMe.new( “Today we are going to learn to speak in sanoj crypt” ) # puts me.sanoj

class SpeakLikeMe

def initialize( input )
  @input = input
end
def sanoj
  @input.reverse
end

end

Contributing to sanoj

Copyright © 2013 Jonas Haskins. See LICENSE.txt for further details.