Number functions
Package:
FUNCTION_PACKAGE. Registered bycreateEngine(); for a slimmer engine, register it explicitly (see choosing packages).
A function takes one or more numbers and gives back another, written with the
name first and the inputs in brackets: sqrt(16) is the square root of sixteen.
These are the everyday maths functions, the ones a calculator keeps on its keys.
sqrt(16) // 4abs(-5) // 5round(3.7) // 4floor(3.7) // 3ceil(3.2) // 4min(3, 7) // 3max(3, 7) // 7gcd(12, 18) // 6