Improved Windows ABI support

This commit is contained in:
Eduard Urbach 2025-02-15 18:23:33 +01:00
parent 91a3ec9d52
commit b3fec98baf
Signed by: eduard
GPG key ID: 49226B848C78F6C8
22 changed files with 124 additions and 32 deletions

View file

@ -1,7 +1,6 @@
import io
import sys
import thread
import time
main() {
thread.create(work)
@ -12,7 +11,6 @@ main() {
work() {
io.out("[ ] start\n")
time.sleep(10 * 1000 * 1000)
io.out("[x] end\n")
sys.exit(0)
}