/* ** ExWait ** ** Purpose: ** Display the wait statement ** ** Date: ** March 3 2012 ** ** Author: ** Charles Bos */ #include #include main() { println ("Do something..."); // Wait 2 seconds wait(2); println ("Do something else..."); // Wait until return is pressed wait(-1); }