You can find a Node.js and JavaScript ES6 implementation of the kata in the javascript folder; produce the song with:
node song.js
Similarly a Ruby version can be found in the ruby folder; produce the song with:
ruby song.rb
A Python version can be found in the python folder; produce the song with:
python song.py
A Java version can be found in the java folder; produce the song with:
javac Song.java && java Song
You can find out more about the London Code Dojo at our homepage.
Code to produce a popular children's nursary rhyme was produced by a web agency for the customer last year. The customer now desires to produce multiple different versions of the song using the same structure but based on different themes, for example a current popular children's movie featuring a cast of animals. The customer asks that you make the song configurable for different lists of animals. The customer cannot guarentee that there will be the same number of animals in each different version.
No documentation or tests were provided by the previous developer.
Refactor the code to allow for the customer's needs. Remember: refactoring can only be done in the presence of tests that are passing, and after refactoring the tests still pass!
The code samples are licensed under the CC-SA-NC-4.0 license, as shown in the LICENSE file.