Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 726 Bytes

BUILDING.md

File metadata and controls

21 lines (15 loc) · 726 Bytes

╔╗░╔╗░░╔╗╔╗░░░░╔╗╔╗╔╗░░░░╔╗░░╔╗ ║║░║║░░║║║║░░░░║║║║║║░░░░║║░░║║ ║╚═╝╠══╣║║║╔══╗║║║║║╠══╦═╣║╔═╝║ ║╔═╗║║═╣║║║║╔╗║║╚╝╚╝║╔╗║╔╣║║╔╗║ ║║░║║║═╣╚╣╚╣╚╝║╚╗╔╗╔╣╚╝║║║╚╣╚╝║ ╚╝░╚╩══╩═╩═╩══╝░╚╝╚╝╚══╩╝╚═╩══╝

#Compiling

C language:

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

CPP :

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

Python :

  1. python hello-world.py