//*************************************************** // ITEC 120 -- Example 2 // Students are to copy this program and compile it. // Look at the error messages that the compiler // gives back. Look at the text and figure out // what the problem is and fix it with the editor. // Then save, and recompile and run it. //*************************************************** public class example2 { // outputs some information on one line public static void main (String[] args) { System.out.print("Using print is easy!"); system.out.print("How can I make this start on the next line?"); } }