Compilers

A compiler is simply a program that takes a bunch of code, and turns it into a form that a computer can execute.

They are useful because they let programmers write code that is more human-readable and understandable, and then convert it to computer-speak.

They also can make the code really efficient by doing things like getting rid of unused files, or other substitution optimizations.

I enjoy writing low-level assembly code more than something like JavaScript or C#!Awesome! Most of use a compiler though because writing assembly is super hard
This code has a function that only returns the value 2 every single time!Good thing your compiler will probably just substitute in the value 2 so the crappy code won't be inefficient!
Keep nybblin'