/* Java application that creates a thread whose ** "resident runnable" is an instance of PrintGrisGrop ** and then starts that thread. */ public class GrisGrop1 { public static void main(String[] args) { Runnable grisGropObj = new PrintGrisGrop(); Thread grisGropThread = new Thread(grisGropObj); grisGropThread.start(); } }