View Single Post
  #29  
Old 02-10-2011, 10:24 PM
bas_I_am
vision
 
Join Date: Jun 2005
Location: living on a psychedelic pig farm
Posts: 514
Re: what do y'all think?
God. . . the bailout value of the ultimate recursive function -> why(x)


Code:
 function why(x){
    var answer = because ( x );
    if ( !answer ){
        return God;
    }
    else{
        return why ( answer );
    }
}