This evening, a friend was going somewhat stir-crazy, and needed a break. Since he claimed to be listening to hair-band (1980s rock) music, I suggested he use code to explain the premise and flow of the song. Of course, he did pretty well – but I won with this horrid ditty.. Please forgive me. ;)
int main() { for (;;) { song(); } exit(0); }int song() {
printf(”\\n\\
It’s the song that never ends, it just goes on \\n\\
and on, my friends.\\n\n\\
Someone started singing it not knowing what it was,\\n\\
and they’ll continuing singing it forever just because,\\n”);
};