June 19, 2023
// Tom Trebisky  6-19-2023
class HelloWorld {
    public static void main(String[] args) {
        System.out.println("Hello, World!");
    }
}
I "compile" this with:
javac hello.javaThis produces the file "HelloWorld.class", I run it via:
java HelloWorld Hello, World!It looks like I am on the air in a basic way.
Adventures in Computing / tom@mmto.org