main.cpp
// preprocessor directive
#include <iostream>
#include <string>
// namespaces used to prevent ambiguity between identical names from different compilation units (using keyword ommitted here)
// function prototypes, to be placed in header files, will act as contracts for what the source file should implement
void PrintIntro();
std::string GetGuess();
This file has been truncated. show original