/** * Description: Simple "hello, world" Java program demonstrating output to stdout * @author: Hyrum D. Carroll * @version: 0.1 (August 7, 2019) */ public class HelloWorld{ public static void main(String[] args){ System.out.println("hello, world"); // display hello, world } }