Use simpler main!

This commit is contained in:
Ethan McCue 2023-05-16 00:39:36 -04:00
parent 4c739965c2
commit a8e3935746
1 changed files with 2 additions and 4 deletions

View File

@ -1,5 +1,3 @@
public class HelloWorld {
public static void main(String[] args) {
System.out.println("OK");
}
void main() {
System.out.println("OK");
}