# Arithmetric
6+2 # addition
6-2 # subtration
6*2 # multiplication
6/2 # division
4^2 # square
4**2 # square
exp(log(12)) # exponentiate
log(12) # natural log
log10(12) # base 10 log
7%/%2 # quotient
4%%2 # remainder
x=4 # assignment
 
# Logical
x==4 # check if equal
x<5 # check if smaller
x<=5 # check if leq
x>5 # check if greater
x>=5 # check if geq
x!=5 # check if neq