”Hello World” is readily made popular because of casual context where a quick and simple demonstration will be enough to carefully introduce the programming language to programmers who are taking new programming languages and the common knowledge to base that is through using a universal tutorial which is a “Hello World” program, we can use other words as to replace “Hello World” like using a “name, an event, a place or an object” however by doing this many people would think of other “names, events, places or objects” as well, thus by using “Hello World” you are simply confirming a new “World” of programming language and by welcoming it with a “Hello” because of taking the opportunity to study the language, means you are indeed welcomed to a new world of programming languages.
Programmers might say “Hello World” is like a baby’s first word uttering, but in the program where programmers carefully develop and create new poetry through code, programmers will always recall their first program which indeed is the “Hello World”.
.stack 100h
.data
hello_message db 'Hello, World!',0dh,0ah,'$'
.code
main proc
mov ax,@data
mov ds,ax
mov ah,9
mov dx,offset hello_message
int 21h
mov ax,4C00h
int 21h
main endp
end main