Creating Variables in Calculator
When creating a variable, use the following conventions. As alternatives to using → (store), you can use ":=" or the Define command. All of the following statements are equivalent.
5+83→num
num:= 5+83
Define num=5+83