Implemented liveness analysis
All checks were successful
/ test (push) Successful in 15s

This commit is contained in:
Eduard Urbach 2025-07-04 19:06:47 +02:00
parent f357285045
commit 0ece1b092e
Signed by: akyoto
GPG key ID: 49226B848C78F6C8
23 changed files with 274 additions and 113 deletions

View file

@ -1,23 +0,0 @@
init() {
utf8 := 65001
kernel32.SetConsoleCP(utf8)
kernel32.SetConsoleOutputCP(utf8)
main.main()
exit()
}
exit() {
kernel32.ExitProcess(0)
}
crash() {
kernel32.ExitProcess(1)
}
extern {
kernel32 {
SetConsoleCP(cp uint)
SetConsoleOutputCP(cp uint)
ExitProcess(code uint)
}
}