4.6 Using objects

You can use objects in your calculations:
Create objects A and B:

A <- 7
B <- 10

Sum up A and B, and save the sum in C:

A + B
C <- A + B

Note that if A or B change, C will NOT change, unless you re-run “C <- A + B”