first commit

This commit is contained in:
Jose Caban
2025-06-07 11:38:03 -04:00
commit e0316ca3ff
79 changed files with 3155 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
/*
* Implementation note: for simplicity in the makefiles, we violate the
* Coding standard for the name. Rather than use HelloWorld, we write
* helloworld to match the file name.
* It's not the best reason, but it means the makefiles wont build stuff
* that is already built.
*/
class helloworld
{
// Your program begins with a call to main().
// Prints "Hello, World" to the terminal window.
public static void main(String args[])
{
System.out.println("Hello, World");
}
}