feat: added support for invoke static

This commit is contained in:
2024-03-29 15:29:40 +01:00
parent 58a40f3a24
commit c103ead828
6 changed files with 31 additions and 6 deletions

View File

@@ -3,7 +3,7 @@ package testclass;
public class Test {
String testfield;
public static int otherField;
public static void Main(String[] args) {
public static void main(String[] args) {
System.out.println("Hello World!");
}
}