Docs

Start here for a guided overview, then dive into the full reference.

Getting Started

Key Topics

Examples

Hello world with arrays and mapping:

LET nums = [1,2,3,4]
LET doubled = MAP(nums, "x * 2")
SAY doubled

Fetch JSON and validate a field:

LET data = JSON_PARSE(URL_READ("https://api.example.com/todo/1"))
IF IS_OBJECT(data) & data.id = 1 THEN SAY "ok"

Next Steps