Practical Math for Programmers: Truth Tables and Boolean Basics
The “Why This Should Matter to You” Story Let’s say you’re responsible for maintaining a piece of code for the business that figures out recommendations for what to do at night. At the moment, it’s pretty simple: public void DoNightThings() { if (_itsLate) GoToBed(); } Let’s say a project manager comes along and says to…
