/** * Weight Calculator > Essentials1.java * * Displays your weight on the moon using console output. * Illustrates a basic program, multi-line comments, output. * * @author Dale Reed */ public class Essentials1 { public static void main(String[] args) { // Prints "On the moon you weight 30 pounds." to the console. System.out.println("On the moon you weight 30 pounds."); } } /* Output: On the moon you weight 30 pounds. */