4.0.7 has Arrived!
Version 4.0.7 has arrived! This is another digital-only update, fixing a few small typos:
- Table of Contents: The text for the section called “The Adventure Begins” was accidentally labeled as “The Adventure Begin.”
- Page 30: In the code sample, there is a missing semicolon:
Console.WriteLine("Hi " + username)
should beConsole.WriteLine("Hi " + username);
. - 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.”
- Page 84: In the code sample, there is a missing quotation mark:
Console.WriteLine($"{a} * {b} = {a * b});
should beConsole.WriteLine($"{a} * {b}");
.