1 public class SemiColonTests {2 3 4 static String x = "J";;5 6 public static void main(String [] args){7 System.out.println(x+x+x);8 }9 }10