q/examples/winapi/winapi.q
2024-08-19 17:25:51 +02:00

10 lines
No EOL
155 B
Text

import mem
main() {
text := mem.alloc(4)
text[0] = 'H'
text[1] = 'i'
text[2] = '!'
user32.MessageBoxA(0, text, text, 0x00240040)
mem.free(text, 4)
}