A while back, I saw some JavaScript where every var and function in the file was named after a type of fruit.
It look something like:
grapes.forEach(function(grape) {
if(grape < 10)
apple += orange;
});
We decided to name the unknown coder Fruitcake, although the code was running as expected.
The crazy part was having to read it all to see how it actually worked in order to just add a single new feature.
Has anyone else come across something like this?
This code for a robot drive