Posted by Bob - the Alien on September 17, 2002 at 17:14:04:
In Reply to: Re: maybe you already are becoming one..... posted by jonvon on September 17, 2002 at 16:18:17:
: cute != generallyAGoodThing; //returns true
: lately tho:
: cute == generallyAGoodThing; //returns true
function bool isCute(parentTypePerson) {
bool isCute;
bool genereallyAGoodThing = true;
parentTypePerson.hasChild() ? isCute == generallyAGoodThing : isCute != generallyAGoodThing;
return isCute;
}
new parentTypePerson jonvon = theHuman("John Vaughan");
jonvon.hasProcreated == true;
isCute(jonvon);