How can a variable be created?

Q

How can a variable be created?

A

All strings in the source code that are different from the keywords of the language itself are interpreted as names. For example whereIam or I_AM_HERE are just names in the first instance. Only an assignment transforms a simple name into a variable. whereIam = “I am here“ is creating a variable whereIam of a data type string.