Skip to content
This repository has been archived by the owner on Dec 23, 2018. It is now read-only.

Latest commit

 

History

History
26 lines (21 loc) · 854 Bytes

BUILDING.md

File metadata and controls

26 lines (21 loc) · 854 Bytes
╔╗░╔╗░░╔╗╔╗░░░░╔╗╔╗╔╗░░░░╔╗░░╔╗
║║░║║░░║║║║░░░░║║║║║║░░░░║║░░║║
║╚═╝╠══╣║║║╔══╗║║║║║╠══╦═╣║╔═╝║
║╔═╗║║═╣║║║║╔╗║║╚╝╚╝║╔╗║╔╣║║╔╗║
║║░║║║═╣╚╣╚╣╚╝║╚╗╔╗╔╣╚╝║║║╚╣╚╝║
╚╝░╚╩══╩═╩═╩══╝░╚╝╚╝╚══╩╝╚═╩══╝

Compiling and running

x86 assembly:

  1. nasm -f elf32 hello-world.asm
  2. gcc -m32 -o hello hello-world.o
  3. ./hello

C language:

  1. gcc hello-world.c -o hello
  2. ./hello

C++:

  1. g++ hello-world.c -o hello
  2. ./hello

Python:

  1. python hello-world.py