Variables are names for values in your application. The names, called "identifiers", follow Rules. Identifiers
omust start with a letter, underscore (_), or dollar sign ($)
oare case sensitive
osubsequent characters can also be digits 0-9
In kBridge, variables are most often declared with the keyword var (example, var x = 32).