C++
There is no installation needed. Make sure you have XCode command line tools installed
# Version of C++ installed
$ c++ --version
Compiling files
To be able to compile files from your terminal you can add the following alias in your bash profile.
alias cppcompile='c++ -std=c++11 -stdlib=libc++'
Then you can run all cpp file directly using cppcompile main.cpp and it will use C++11 so no errors in the case of using vectors, auto, sets etc.
Project Resources
- How to program a game in C++: #0 - Introduction and Setup | YT DanZaidan (good explanation)
- Code-It-Yourself! First Person Shooter (Quick and Simple C++) | YT javidx9 + Playlist
- Let's make 16 games in C++: Chess | YT Playlist
- Creating a Linked List Project in C++ Part 1 | YT Playlist