and boy am I ever! I can't even get the first code in lesson 1 to work!
My background with C++ is in the nada to zilch range, but I want to learn because I have a goal to get into the gaming industry. I have tried a few "C++, For Beginners!" books in the past, but none have kept my attention. It's not that I get dissuaded by the daunting task of learning a new language as it is so much the minor inconveniences and technicalities of getting started. For example, the choosing of a compiler, to getting the compiler to work - it's so aggravating.
I copied the code down as it was shown in the tutorial video and I ran it. Here is what I have written down for the code:
#include <iostream>
int main() {
std::cout << "Hello World!" << std::endl;
return 0;
}
That is not the problem. (or it may be, I really don't know) The problem is that when I click on "Start without Debugging" the compiler acts like it's going to do something, but then the whole console closes with no results. I reopen the console to see that everything is as it was, as if to taunt me to try it again with the hopes and dreams that what had happened before was just a fluke. I try again. It closes.
What gives?!