Getting Started

Run your first Jot program and understand the minimal execution loop.

First program

Create hello.jot:

print(1 + 2)

Run it with the Jot CLI:

jot hello.jot

Expected output:

3
Execution time: <n>ms

Inline evaluation

jot -e "print(42)"
  1. Language Tour for practical syntax examples.
  2. Language Reference for exact grammar and semantics.
  3. CLI for command and flag behavior.