This commit is contained in:
Oleksii Aleshchenko
2023-04-06 15:04:51 +03:00
parent 81ac59840f
commit 9ece98fece
2 changed files with 46 additions and 2 deletions

13
src/test/Test.java Normal file
View File

@@ -0,0 +1,13 @@
package test;
public class Test {
public static void main(String[] args) {
}
static int m(){
System.exit(0);
// return 1;
System.out.println(123);
return 1;
}
}