first commit

This commit is contained in:
Boris
2024-01-15 20:14:10 +00:00
commit 8c81ee28b7
3106 changed files with 474415 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
/**
* Class Hello:
*
* Hello-world program to demonstrate BlueJ.
*/
class Hello
{
/**
* Method that does the work
*/
public void go()
{
System.out.println("Hello, world");
}
/**
* main method for testing outside BlueJ
*/
public static void main(String[] args)
{
Hello hi = new Hello();
hi.go();
}
}