Variables
Declaring variables
discount = 10% | 10%
cost = $550 | $550
cost - discount | $495.00 Global variables
Redefining variables
monthly rent = $1,900 // 2018 | $1,900
monthly rent = $2,150 // 2019 | $2,150
monthly rent / 4 people | $537.50Variables can be added to and subtracted from
Tips for working with variables
Peeking at a variable's value


Auto-completing variable names

Variable renaming (also known as refactoring)

Things to note about variable declarations
Variables must be declared before use
Currency rounding does not apply to variable declaration lines

Variable declarations can be excluded from the floating total

Last updated
