package edu.pdx.cs410J.lang; /** * This class simply prints "Hello World". * * @author David Whitlock */ public class Hello { /** * This method is where the JVM starts executing. * * @param args * Command line arguments from console */ public static void main(String[] args) { System.out.println("Hello World"); } }