CLT does NOT include an IDE (editor, project manager, etc).
xcode-select --installA popup should appear prompting you to install Command Line Tools.
xcode-select -p # should print a path under /Library/Developer/CommandLineTools clang --version # Apple clang clang++ --version
sudo xcode-select --switch /Library/Developer/CommandLineTools
#include <iostream>
using namespace std;
int main() {
cout << "Hello world!" << endl;
}