 1Content-type: application/x-Unknown; charset=UTF8package nmc.sidekick;


public class DumbSleepTest {

    /**
     * Starts the application.
     * @param args an array of command-line arguments
     */
    public static void main(java.lang.String[] args) {
        int i = 0;
        while (true) {
            try {
                Thread.sleep(1000);
                i++;
                if ( (i % 10) == 0 ) {
                    DebugMessage.println("i=" + i);
                }
            } catch (InterruptedException e) {
                DebugMessage.println("InterruptedException: " + e);
            }
        }
    }

}
