/** * Run this with: * $ javac Chop.java * $ java Chop * * @author me. So there. */ class Chop { /** * Prints something. */ public static void main(String[] args){ System.out.println("Hi there.\n"); } }