Found this on reddit today:
This went into a neural infinite loop before something went “ding” and I got it. Brilliant. Not just the graffiti, but the human mind’s ability to accomodate infinite recursions and paradoxes.
Computers, ofcourse, are totally dumb. Here’s why:
if ( isTrue(statement) == TRUE ) believeIt();
function isTrue(statement)
{
if ( isTrue(statement) ) return TRUE
}
Leave a Reply