q/lib/run/run_windows.q
Eduard Urbach 0ece1b092e
All checks were successful
/ test (push) Successful in 15s
Implemented liveness analysis
2025-07-04 19:06:47 +02:00

20 lines
No EOL
231 B
Text

import os
init() {
utf8 := 65001
kernel32.SetConsoleCP(utf8)
kernel32.SetConsoleOutputCP(utf8)
main.main()
os.exit(0)
}
crash() {
os.exit(1)
}
extern {
kernel32 {
SetConsoleCP(cp uint)
SetConsoleOutputCP(cp uint)
}
}