Improved Windows ABI support

This commit is contained in:
2025-02-15 18:23:33 +01:00
parent 0a1a8f741d
commit d0bcd8cf9f
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)
}