mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 17:34:43 +00:00
10 lines
288 B
Nim
Executable File
10 lines
288 B
Nim
Executable File
# test a Windows GUI application
|
|
|
|
import
|
|
windows, shellapi, nb30, mmsystem, shfolder
|
|
|
|
#proc MessageBox(hWnd: int, lpText, lpCaption: CString, uType: uint): int
|
|
# {stdcall, import: "MessageBox", header: "<windows.h>"}
|
|
|
|
discard MessageBox(0, "Hello World!", "Nimrod GUI Application", 0)
|