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.83 tracks/php/exercises/pig-latin/README.md
trackler-2.2.1.82 tracks/php/exercises/pig-latin/README.md
trackler-2.2.1.81 tracks/php/exercises/pig-latin/README.md
trackler-2.2.1.80 tracks/php/exercises/pig-latin/README.md
trackler-2.2.1.79 tracks/php/exercises/pig-latin/README.md
trackler-2.2.1.78 tracks/php/exercises/pig-latin/README.md
trackler-2.2.1.77 tracks/php/exercises/pig-latin/README.md
trackler-2.2.1.76 tracks/php/exercises/pig-latin/README.md
trackler-2.2.1.75 tracks/php/exercises/pig-latin/README.md
trackler-2.2.1.74 tracks/php/exercises/pig-latin/README.md
trackler-2.2.1.73 tracks/php/exercises/pig-latin/README.md
trackler-2.2.1.72 tracks/php/exercises/pig-latin/README.md
trackler-2.2.1.71 tracks/php/exercises/pig-latin/README.md
trackler-2.2.1.70 tracks/php/exercises/pig-latin/README.md
trackler-2.2.1.69 tracks/php/exercises/pig-latin/README.md
trackler-2.2.1.68 tracks/php/exercises/pig-latin/README.md
trackler-2.2.1.67 tracks/php/exercises/pig-latin/README.md
trackler-2.2.1.66 tracks/php/exercises/pig-latin/README.md
trackler-2.2.1.65 tracks/php/exercises/pig-latin/README.md
trackler-2.2.1.64 tracks/php/exercises/pig-latin/README.md