╔╗░╔╗░░╔╗╔╗░░░░╔╗╔╗╔╗░░░░╔╗░░╔╗
║║░║║░░║║║║░░░░║║║║║║░░░░║║░░║║
║╚═╝╠══╣║║║╔══╗║║║║║╠══╦═╣║╔═╝║
║╔═╗║║═╣║║║║╔╗║║╚╝╚╝║╔╗║╔╣║║╔╗║
║║░║║║═╣╚╣╚╣╚╝║╚╗╔╗╔╣╚╝║║║╚╣╚╝║
╚╝░╚╩══╩═╩═╩══╝░╚╝╚╝╚══╩╝╚═╩══╝
nasm -f elf32 hello-world.asm
gcc -m32 -o hello hello-world.o
./hello
gcc hello-world.c -o hello
./hello
g++ hello-world.c -o hello
./hello
python hello-world.py