hello world

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
Vincent Batts 2023-10-03 15:38:48 -04:00
parent e789891e6e
commit cc6cd29661
Signed by: vbatts
GPG key ID: E30EFAA812C6E5ED
3 changed files with 48 additions and 1 deletions

7
src/hbb/HelloWorld.java Normal file
View file

@ -0,0 +1,7 @@
package hbb;
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello World");
}
}