Quick question on naming variables

Can I name a boolean variable with a number?

Is this:

*temp 12 false

okay?

Numbers cause problems as var names unless you go var_1 for example.

3 Likes

*temp n12 false

or something along those lines would work.

Got it. Thanks guys!