For the complete documentation index, see llms.txt. This page is also available as Markdown.

Subtraction (-)

You can use the simple - operator when you want to minus two values from each other

log 10 - 5
// does a subtraction on its two operands and returns 5
// this is doing 10 minus 5

Last updated