9 lines
171 B
Plaintext

extern user32 {
MessageBoxA(window *Any, text *Int8, title *Int8, type UInt)
}
main() {
title := "Title."
text := "Hi!"
user32.MessageBoxA(0, text, title, 0x240040)
}