Posts Tagged ‘bugs’

Bug Finding Program

Tuesday, November 25th, 2008

Typically, I am against reading comments in any sort of social-anything site but there are very few times where I am linked a fantastic comment that deserves its own post. This is one of those comments. From Reddit.com, the bug finding program comment by user G_Morgan:

I have a bug finding program. You pass in the name of a code file and it returns a truth value if there is a bug in that file or not.

The current prototype is:

bool hasBug(String &progFile) {
    return TRUE;
}

G_Morgan’s function could not be any more true.

(more…)