1
vote
Code Golf: Print the entire “12 Days of Christmas” song in the fewest lines of code.
423 bytes with Lingua::EN::Number:
use Lingua::EN::Numbers qw/num2en num2en_ordinal/;
@l=map{($i++?num2en($i):'a')." $_"}split/\n/,<<"";
partridge in a pear tree
turtle doves, …
1
vote
Code Golf: How do I write the shortest character mapping program?
If you change the format of the input slightly, this is a direct use of the tr program:
echo EncodeMe | tr eMcnEo …
