/* This is our first C++ program * This program just prints some text to the screen. * We are just trying to get comfortable with CLion * Also, this is multi-line or block comment. */ #include using namespace std; /* The include directive instructs C++ to add in the iostream library to the * project build. The using statement instructs C++ to use the standard namespace * to resolve name ambiguity if one exists. */ //This is a single line comment // The program starts running here, from the main function. int main() { cout << "Hello, World"<