13 lines
180 B
C
13 lines
180 B
C
#include <windows.h>
|
|
|
|
int main() {
|
|
|
|
MessageBoxW(
|
|
NULL,
|
|
L"Hello, World!",
|
|
L"My awesome title",
|
|
MB_OK | MB_ICONEXCLAMATION
|
|
);
|
|
|
|
return 0;
|
|
} |