//*************************************************** // ITEC 120 -- Example 2 // Copy this program and compile it. // Look at the error messages that the compiler gives you. // Look at this program and figure out what the problem is // and fix it with the editor. // Then save, and recompile and run it. // Hint: Looking at example 1 might help you. //*************************************************** public class example2 { // outputs some information on one line public static void main (String[] args) { System.out.print("print makes text print to the screen. "); system.out.print("How can I make this start on the next line?"); } }