This time, I received a better answer regarding my simple console application :
; hello.asm - Hello, World! example for Poasm (Console Application)
.386
.model flat,stdcall
option casemap:none
include \masm32\include\windows.inc
include \masm32\include\kernel32.inc
includelib \masm32\lib\kernel32.lib
.data
HelloWorld db 'Hello, World!',0
.code
start:
; Get the standard output handle
invoke GetStdHandle, STD_OUTPUT_HANDLE
mov ebx, eax
; Write the "Hello, World!" string to the console
invoke WriteConsole, ebx, addr HelloWorld, sizeof HelloWorld - 1, 0, 0, 0
; Exit the program
invoke ExitProcess, 0
end start