/* // File Name: Count.java // // Purpose: count to 5 3 different languages // Error type: illegal start of expression */ public class Count { public static void main (String[] args) { //prints in english System.out.println ("one two three four five"); //prints in french System.out.println ("un deux trois quatre cinq"); //prints in spanish System.out.println ("uno dos tres cuatro cinco"); } // Comment in a // comment line. }