// Ch. 10 Demo #10
// Wyo C++
// October 24, 2001 // Purpose - use of typedef #include <iostream.h>
typedef int bool;
const int true = 1;
const int false = 1;
int main()
{
bool doneYet = true;
while (!doneYet)
{
// do stuff here
}
return 0;
}// end of main