Ask Learn
Preview
Ask Learn is an AI assistant that can answer questions, clarify concepts, and define terms using trusted Microsoft documentation.
Please sign in to use Ask Learn.
Sign inThis browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
This is Day 6 of 30 Days of Small Basic Part 1.
As with all great things, there is a pun afoot! (No the pun is not a foot.) You see, this topic is about Case Insensitivity and about a Case for Case Insensitivity. Thus, it’s punny! (But not funny.)
Case Insensitivity is when a programming language or other software does not care whether you’re using capital letters or not. Case Sensitive is the opposite… you better be using the correct capitalization or else it’s not going to work.
Here’s an example from Small Basic:
TextWindow.WriteLine(“Hello Oblate Spheroid”)
If that string (“Hello Oblate Spheroid”) had some funky capitalization (like “HeLlO oBlAtE sPheRoId”), then it would display with the casing that you wrote for it!
Here’s an example from Small Basic:
TextWindow.WriteLine(“Hello Oblate Spheroid”)
Those identifiers could be written with different casing and produce the exact same results. For example, TEXTwinDOW.wRiTeLiNe(“Hello Oblate Spheroid”)wouldn’t change anything!
And that begs the question… why would you want to be case insensitive? Because the Small Basic creators (mostly Vijaye Raji) made a clear decision to design Small Basic as a case insensitive language!
Well, for starters, Small Basic exists to teach programming to the youngest possible audience (being a code-writing language, not like Scratch, Alice, or Kodu). In order to do that, Vijaye and team chose to make it as small, as simple, and as basic as possible. They also carefully crafted it to be as fun as possible. That’s why there’s an ever-present Help area, why the syntax coloring is so thorough, why the IntelliSense was re-designed into a big wheel menu with integrated assistance (descriptions of each identifier), why as many complexities were stripped out as possible, why the UI is mostly just a toolbar with a few big buttons, and why Go To was used… all to teach quickly, easily, and simply. And to do it in a way that’s FUN!
And, honestly, it’s not so fun if you accidentally write up “Textwindow” instead of “TextWindow” and have to deal with each of those errors when trying to compile your program. That can slow down the joy of the experience.
However, you better believe that we’ll encourage you often, passionately, and thoroughly to try to get the caps right when you type them.
Why should you get used to typing the right casing? Because you’re building a good habit! Other languages are far more sensitive and moody neighbors (they’re case sensitive), and they’ll yell at you for playing on their lawn (you’ll get errors for the wrong casing when you compile). So if you get used to typing the cases, you’ll save debugging time in the future!
Small Basic’s more like a friendly neighbor who won’t yell at you (case insensitive) and will even offer you ice-cream (IntelliSense auto-corrects your casing for you)!
We also provided IntelliSense to give you the right capitalization for free:
That’s right, if you type the wrong case, but you use IntelliSense, then IntelliSense will correct you and give you right casing!
And why do we want you to get used to typing in the right casing? Because you’re building a good habit! Other languages are far more sensitive and moody (a.k.a. case sensitive), and they’ll yell at you for playing on their lawn (for getting their casing wrong). So we want to make sure that you get used to typing in those cases. It will save you from lots of annoying debugging in the future! (Or it won’t; one of those options.)
Learn more about Small Basic:
https://blogs.msdn.com/b/smallbasic/
Have a Small and Basic day!
- User Ed
This is Day 6 of 30 Days of Small Basic Part 1.
Ask Learn is an AI assistant that can answer questions, clarify concepts, and define terms using trusted Microsoft documentation.
Please sign in to use Ask Learn.
Sign in