Sha256: 5a25080a02d233cc5471598fba90f5302ede2a114ebb7570d08341383a26696b

Contents?: true

Size: 1.31 KB

Versions: 107

Compression:

Stored size: 1.31 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.

## Making the Test Suite Pass

1. Get [PHPUnit].

        % wget --no-check-certificate https://phar.phpunit.de/phpunit.phar
        % chmod +x phpunit.phar

2. Execute the tests for an assignment.

        % phpunit.phar wordy/wordy_test.php

[PHPUnit]: http://phpunit.de


## 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

107 entries across 107 versions & 1 rubygems

Version Path
trackler-2.2.1.43 tracks/php/exercises/pig-latin/README.md
trackler-2.2.1.42 tracks/php/exercises/pig-latin/README.md
trackler-2.2.1.41 tracks/php/exercises/pig-latin/README.md
trackler-2.2.1.40 tracks/php/exercises/pig-latin/README.md
trackler-2.2.1.39 tracks/php/exercises/pig-latin/README.md
trackler-2.2.1.38 tracks/php/exercises/pig-latin/README.md
trackler-2.2.1.37 tracks/php/exercises/pig-latin/README.md
trackler-2.2.1.36 tracks/php/exercises/pig-latin/README.md
trackler-2.2.1.35 tracks/php/exercises/pig-latin/README.md
trackler-2.2.1.34 tracks/php/exercises/pig-latin/README.md
trackler-2.2.1.33 tracks/php/exercises/pig-latin/README.md
trackler-2.2.1.32 tracks/php/exercises/pig-latin/README.md
trackler-2.2.1.31 tracks/php/exercises/pig-latin/README.md
trackler-2.2.1.30 tracks/php/exercises/pig-latin/README.md
trackler-2.2.1.29 tracks/php/exercises/pig-latin/README.md
trackler-2.2.1.28 tracks/php/exercises/pig-latin/README.md
trackler-2.2.1.27 tracks/php/exercises/pig-latin/README.md
trackler-2.2.1.26 tracks/php/exercises/pig-latin/README.md
trackler-2.2.1.25 tracks/php/exercises/pig-latin/README.md
trackler-2.2.1.24 tracks/php/exercises/pig-latin/README.md