Examples

Hello world

using(winapi)

local b = MessageBox(
nil, "❤️?", "hi", MB_YESNO)

print(b, b == IDYES, b == IDNO)
os.execute('pause')

hello world messagebox

6       true    false
Press any key to continue . . .

Sample run loop

using(winapi)

local msg = MSG()
while true do
  Sleep(1)
  GetMessage(msg, nil, 0, 0)
  TranslateMessage(msg)
  DispatchMessage(msg)
end