Added Windows support
Some checks failed
/ test (push) Failing after 15s

This commit is contained in:
Eduard Urbach 2025-07-01 13:37:40 +02:00
parent dbc865ee67
commit 12e0ccf7b2
Signed by: akyoto
GPG key ID: 49226B848C78F6C8
36 changed files with 738 additions and 42 deletions

View file

@ -1,3 +1,10 @@
write(_ []byte) -> (written int) {
return 0
}
extern {
kernel32 {
GetStdHandle(handle int64) -> int64
WriteConsoleA(fd int64, buffer *byte, length uint32, written *uint32) -> bool
}
}