Hey there fellow c++ noobs. Just another heads-up to go along with all the others, that utilizing “using namespace” to simplify your code (instead of having to type your namespace every time) carries with it the risk of causing a namespace clash. Wherein you may have multiple namespaces of the same name within a given library or a number of libraries, and Visual Studio doesn’t know which one is needed for your code.