About Lesson
Case-insensitive Language
Flowgorithm is case-insensitive language. It treats UPPER and lowercase variables the same.
Download the flowchart from the lesson attachment( Exercise files .zip file). Extract and run the flowchart.
Let’s understand the concept with an example. The flowchart in the attachment declares a variable age in lowercase. Later, it uses the variable name in uppercase. The flowgorithm interpreter resolves the variables of age and AGE similarly.
Case-sensitive languages, such as Java, would throw an error message.
Exercise Files