It's dangerous to code alone! Take this.

4.0.7 has Arrived!

Published on 03 Oct 2021.

Version 4.0.7 has arrived! This is another digital-only update, fixing a few small typos:

  1. Table of Contents: The text for the section called “The Adventure Begins” was accidentally labeled as “The Adventure Begin.”
  2. Page 30: In the code sample, there is a missing semicolon: Console.WriteLine("Hi " + username) should be Console.WriteLine("Hi " + username);.
  3. Page 33: When discussing variables, the book said, “You have a lot of control over what names you give to your variables, nut the language has a few rules.” This should say, “but the language has a few rules.”
  4. Page 84: In the code sample, there is a missing quotation mark: Console.WriteLine($"{a} * {b} = {a * b}); should be Console.WriteLine($"{a} * {b}");.