/* _________________________________________________________________ G E T T I N G S T A R T E D W I T H C + + S E R I E S Ron Kessler Created 12 / 25 / 2016 CLR Console Version You can then double - click on the HelloWorld1.cpp file to view the code. Press F5 to run it and see what it does... don't get too excited! _________________________________________________________________ */ #include "stdafx.h" using namespace System; int main(array ^args) { Console::WriteLine(L"Hello there everybody!"); Console::ReadKey (); //wait until they press a key return 0; //end this baby }