I came across this thread years ago on Code Golf Stack Exchange
The goal of this code golf challenge is to maximize the output rate of a fizz buzz program. Of course fizz buzz is a pretty fast algorithm so there's not much to optimize other than writing it in C or assembly with optimizations enabled.
A few things people bet on:
1. Not using typical output methods, moving output to stdout as quickly as possible
2. No cloning
3. Surprisingly, not multi threading (for some of the replies) (would likely be hard to sync output)