add main function to std that does nothing

This commit is contained in:
Daniella / Tove 2022-03-22 12:22:21 +01:00
parent b76f275392
commit 19fe403eb3
2 changed files with 5 additions and 1 deletions

View file

@ -792,7 +792,7 @@ public class ISBPL {
ISBPLDebugger debugger = new ISBPLDebugger(this);
debugger.start();
try {
while(debugger.port == -1) Thread.sleep(1);
while(debuggerIPC.threadID == -1) Thread.sleep(1);
}
catch (InterruptedException e) {
e.printStackTrace();

View file

@ -378,3 +378,7 @@ func struppercase {
}
s _string
}
func main {
pop 0
}