; 
    include \masm32\include\masm32rt.inc
; 

comment * -----------------------------------------------------
                        Build this  template with
                       "CONSOLE ASSEMBLE AND LINK"
        ----------------------------------------------------- *

    .data?
      value dd ?

    .data
      item dd 0

    .code

start:
   
; 

    call main
    inkey
    exit

; 

main proc

    cls
    print "Hello World",13,10

    ret

main endp

; 

end start
