root@kali:~/ohm/helloworld# nasm -f elf64 -o hello1.o hello1.asm
root@kali:~/ohm/helloworld# ld hello1.o -o hello1
root@kali:~/ohm/helloworld# ./hello1 
Hello world.

