My ProjectEuler solutions
I am running the code in VS Code in a Linux environment.
For C/C++: sudo apt install build-essential For C#: sudo apt install mono-complete
Compile: $ gcc filename.c This creates an a.out-file Run: $ ./a.out
Compile: $ g++ filename.cpp This creates an a.out-file Run: $ ./a.out
Compile: $ mcs filneame.cs This creates an filename.exe-file Run: $ mono filename.exe