IntroductionΒΆ

According to the Pig Latin wikipedia article.

Pig Latin is a language game in which words in English are altered. The objective is to conceal the words from others not familiar with the rules. The reference to Latin is a deliberate misnomer, as it is simply a form of jargon, used only for its English connotations as a strange and foreign-sounding language.

So Pig Latin is a simple mapping with rules. The rules(Rules and Examples) map each word uniquely and are reasonably simple.

What this microservice does is relatively simple. You give it a word(like ‘pig’) and it returns the corrresponding pig latin representation(‘igpay’)

Check out the demo in next section: Getting Started