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

Divide (/)

You can use the simple / operator when you want to divide a value by another

log 10 / 5
// does a division on its two operands and returns 2
// this is doing 10 divided by 5

Last updated