Thursday, July 07, 2005

Premium Code

from the worst-code-ever dept.

Found this code fragment:

ComboBox c = new ComboBox();
c.add("0");
c.add("1");
c.add("2");

...

c.add("97");
c.add("98");
c.add("99");

Total 101 lines of code!