vault backup: 2024-01-21 00:27:23

This commit is contained in:
2024-01-21 00:27:23 +00:00
parent 358e43950b
commit 7a6e5c1b31
46 changed files with 1226 additions and 14 deletions

View File

@@ -0,0 +1,13 @@
/**
* The stand-alone HelloWorld application.
*
* @author (D.Evans
* @version 10/02/2004
*/
public class HelloWorldApp
{
public static void main(String[] args)
{
System.out.println("Hello World!");
}
}