q/lib/core/core_windows.q
Eduard Urbach 70c2da4a4d
All checks were successful
/ test (push) Successful in 28s
Implemented an assembler
2025-06-24 12:55:26 +02:00

28 lines
No EOL
363 B
Text

init() {
// kernel32.SetConsoleCP(cp.utf8)
// kernel32.SetConsoleOutputCP(cp.utf8)
main.main()
exit()
}
exit() {
// kernel32.ExitProcess(0)
}
crash() {
// kernel32.ExitProcess(1)
}
// const {
// cp {
// utf8 65001
// }
// }
// extern {
// kernel32 {
// SetConsoleCP(cp uint)
// SetConsoleOutputCP(cp uint)
// ExitProcess(code uint)
// }
// }