interpret vs compile programming
Compiled: (fastest means of translation)
Languages like C, C++, GO, and Fortran translate source code(your code) to
machine code(binary code ready to execute by CPU) without the need
for an interpreter.
Interpreted: (still fast, but not as fast)
Languages the modern programming world is more familiar with.
(Python, PHP, Javascript, Ruby)
that first translate your source code to bytecode and THEN to machine code.
This makes programs more readable and flexible, but every line of code has to be
delt with by the interpreter so more work = higher cost.