include '%fasminc%/win32wx.inc'
.data
msgBoxCaption TCHAR 'Iczelion Tutorial No.2',0
msgBoxText TCHAR 'Win32 Assembly with FASM is Great!',0
.code
start:
invoke MessageBox,NULL,msgBoxText,msgBoxCaption,MB_OK
invoke ExitProcess,0
.end start