This is a "Hello World" program written in assembly language.
The instructions are written for Linux 64bits.

Compile

$ nasm -f elf64 -o hello.o hello.asm
$ ld -o hello hello.o

Run:

$ ./hello