/** * Prints a welcome message to the console. * *@Author Anthony Larrain *@Version 1 Summer 2000 */ class WelcomeDriver{ public static void main(String [] args){ Welcome wel = new Welcome(); wel.println(); } }