/** * Prints a welcome message to the console. * *@Author Anthony Larrain *@Version 1 Summer 2000 */ class Welcome3a{ public static void main(String [] args ){ System.out.println("Welcome"); System.out.println("To"); System.out.println("Java !"); } } /* Notes * See the use of the semicolon. * The semicolon is used to separate each command * It is good practise to put each command on a separate line */