C++

Session 1:

#include <iostream>	// This allows us to print to the command line

int main()	// This is the main function. It's the entry point to the program
{
	std::cout << "Hello World! " << std::endl;

    return 0;
}

Session 2:

Session 3:

Session 4:

Session 5:

Session 6: