//***********************************************************************//
// //
// - "Talk to me like I'm a 3 year old!" Programming Lessons - //
// //
// $Author: Ben Humphrey digiben@gametutorials.com //
// //
// $Program: HelloWorld //
// //
// $Description: Print "HelloWorld" to the screen //
// //
//***********************************************************************//
// *Note* Using "//" allows us to type anything we want and the compiler ignores it - called "Comments"
// This is the first tutorial that teaches you how to begin programming in
// C++. C++ is a language you use to program, and in our humble opinion,
// the most powerful and robust language ever created for programming. This
// is the language you would use to make the huge games and applications you
// see in the stores. Please read our beginner FAQ before viewing the tutorials.
// Also, if you have our video tutorials, please watch those first so you know
// how to use Visual Studio.
// What you are reading now is comments. When you put a "//" in front of the
// line of code the compiler ignores it so you can type pretty much whatever
// you want. How our tutorials work is you read the comments usually at the top,
// then go through the code and read the comments above and alongside the code,
// then usually you have something else to sum up what you just learned at the
// bottom of the file. If there is more than one .cpp file (code file), then
// you always want to start with Main.cpp. Now, let's go through and learn
// how to create our first program. Read the green comments below to see what
// everything does. All we do in this application is just print "Hello World!"
// to the screen (a black and white console window resembling DOS).
#include <iostream> // This line of code is necessary to include all the C++ standard functions\class definitions.
using namespace std; // This confusing line isn't important right now.