include \masm32\include\masm32rt.inc ; plain Masm32 for the fans of pure assembler
.code
AppName db "Masm32:", 0
txHello db "Hello World, how are you?", 0
start:
repeat 5
fldpi
endm
invoke MessageBox, 0, addr txHello, addr AppName, MB_OK
inkey "that was cute, right?"
exit
end start