TL;DR
* Data types are labels that tell the computer what kind of information you're storing (e.g., a number, text, or a true/false value).
* Use int for whole numbers, like 5 or -100.
* Use float64 for decimal numbers, like 3.14 or 99.99.
* Use bool