Variables
A colon prefix marks a definition explicitly.
:subtotal = 100:subtotal * 2 // 200A bare name also works.
count = 10count + 5 // 15Functions
Section titled “Functions”f(x) = 2*x + 1f(5) // 11Parameters are scoped to the call, so a parameter named x never disturbs a
variable named x defined elsewhere in the document.
:x = 100double(x) = x * 2double(5) // 10