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.jotExpected output:
3
Execution time: <n>msInline evaluation
jot -e "print(42)"What to read next
- Language Tour for practical syntax examples.
- Language Reference for exact grammar and semantics.
- CLI for command and flag behavior.