public class CommentsTutorial { public static void main(String[] args) { // The code below prints text to the screen // Muahaha this line does nothing! /* * These are all comments too! */ // System.out.print("1"); System.out.print("2"); // System.out.print("3"); System.out.print("A"); // System.out.print("B"); System.out.print("C"); } }