/**
 * Copyright (C) 2024 by Martin Robillard. 
 * See https://codesample.info/about.html
 */
package essentials;

/**
 * How the simplest possible Java program actually works.
 */
public class HelloWorld
{
	public static void main(String[] args)
	{
System.out.println("Hello, World!");
} }