This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using Basics; | |
| // Similar to Schemas in Pyschology, we need to break concepts apart | |
| // Like Red Ball != Red Apple, now red round things are 2 different concepts | |
| // In programming, we have data types to help us break apart concepts | |
| // "Mary had a little lamb" is a string, 1 + 1 is numbers | |
| // What we do with these values are COMPLETELY different | |
| // This is why some questions might start sounding dumb | |
| // How data types work in C# |
OlderNewer