2025-02-12 00:04:30 +01:00
|
|
|
extern user32 {
|
|
|
|
MessageBoxA(window *Any, text *Int8, title *Int8, type UInt)
|
|
|
|
}
|
|
|
|
|
2024-08-19 17:25:51 +02:00
|
|
|
main() {
|
2025-02-09 15:37:00 +01:00
|
|
|
title := "Title."
|
|
|
|
text := "Hi!"
|
|
|
|
user32.MessageBoxA(0, text, title, 0x240040)
|
2024-08-19 17:25:51 +02:00
|
|
|
}
|