This commit is contained in:
2025-09-12 11:09:13 +08:00
parent 240ecb0fff
commit 4264c76aa8
6 changed files with 203 additions and 0 deletions

5
HelloWorld/Hello.java Normal file
View File

@@ -0,0 +1,5 @@
public class Hello {
public void greet(String name) {
System.out.println("Hello, " + name + "!");
}
}