Sha256: 4f8ed60a8826e88152255eb4d618f36a9373359ceb287a560c0e90bbddbb9e4d

Contents?: true

Size: 1.6 KB

Versions: 119

Compression:

Stored size: 1.6 KB

Contents

# Pig Latin

Implement a program that translates from English to Pig Latin.

Pig Latin is a made-up children's language that's intended to be
confusing. It obeys a few simple rules (below), but when it's spoken
quickly it's really difficult for non-children (and non-native speakers)
to understand.

- **Rule 1**: If a word begins with a vowel sound, add an "ay" sound to
  the end of the word.
- **Rule 2**: If a word begins with a consonant sound, move it to the
  end of the word, and then add an "ay" sound to the end of the word.

There are a few more rules for edge cases, and there are regional
variants too.

See <http://en.wikipedia.org/wiki/Pig_latin> for more details.

## Running the tests

To run the tests run the command `go test` from within the exercise directory.

If the test suite contains benchmarks, you can run these with the `-bench`
flag:

    go test -bench .

Keep in mind that each reviewer will run benchmarks on a different machine, with
different specs, so the results from these benchmark tests may vary.

## Further information

For more detailed information about the Go track, including how to get help if
you're having trouble, please visit the exercism.io [Go language page](http://exercism.io/languages/go/about).

## Source

The Pig Latin exercise at Test First Teaching by Ultrasaurus [https://github.com/ultrasaurus/test-first-teaching/blob/master/learn_ruby/pig_latin/](https://github.com/ultrasaurus/test-first-teaching/blob/master/learn_ruby/pig_latin/)

## Submitting Incomplete Solutions
It's possible to submit an incomplete solution so you can see how others have completed the exercise.

Version data entries

119 entries across 119 versions & 1 rubygems

Version Path
trackler-2.2.1.35 tracks/go/exercises/pig-latin/README.md
trackler-2.2.1.34 tracks/go/exercises/pig-latin/README.md
trackler-2.2.1.33 tracks/go/exercises/pig-latin/README.md
trackler-2.2.1.32 tracks/go/exercises/pig-latin/README.md
trackler-2.2.1.31 tracks/go/exercises/pig-latin/README.md
trackler-2.2.1.30 tracks/go/exercises/pig-latin/README.md
trackler-2.2.1.29 tracks/go/exercises/pig-latin/README.md
trackler-2.2.1.28 tracks/go/exercises/pig-latin/README.md
trackler-2.2.1.27 tracks/go/exercises/pig-latin/README.md
trackler-2.2.1.26 tracks/go/exercises/pig-latin/README.md
trackler-2.2.1.25 tracks/go/exercises/pig-latin/README.md
trackler-2.2.1.24 tracks/go/exercises/pig-latin/README.md
trackler-2.2.1.23 tracks/go/exercises/pig-latin/README.md
trackler-2.2.1.22 tracks/go/exercises/pig-latin/README.md
trackler-2.2.1.21 tracks/go/exercises/pig-latin/README.md
trackler-2.2.1.20 tracks/go/exercises/pig-latin/README.md
trackler-2.2.1.19 tracks/go/exercises/pig-latin/README.md
trackler-2.2.1.18 tracks/go/exercises/pig-latin/README.md
trackler-2.2.1.17 tracks/go/exercises/pig-latin/README.md
trackler-2.2.1.16 tracks/go/exercises/pig-latin/README.md