Lesson 16 screen capture, done a tad differently

Hey all, this is my attempt at lesson 16.

I’ve had a tad bit of experience before with C#, but not much, and am excited to learn C++ in these tutorials!

Anyway, I did everything almost exactly the same way, except when I declared the variable Guess, I didn’t assign it quotations like in the video. (It still worked this way, and I’m not 100% why it was assigned that way in the video). Anyway, everything ran like a charm!

It was done that way because Ben want’s to ensure the importance of initialising variables even though std::string is a user defined type which has a default constructor so should be initialised to an empty string when declared like std::string Guess;

Ah, so it was done for learning more than anything. Thanks!