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

To The Power Of (^)

If you want to find the power of a value you can use the ^ operator.

log 10 ^ 2
// does an exponentiation on its two operands and returns 100
// this is doing 10 to the power of 2

Last updated