5 lines
136 B
C

extern void MessageBoxA(int, char*, char*, int);
void wWinMainCRTStartup() {
MessageBoxA(0, "Hello, world!", "Hello, world!", 0);
}