Getting Started
Install Jot, run your first program, and understand the project layout.
Install
curl -fsSL https://jotlang.dev/install.sh | bash
jot --versionYour first program
Create hello.jot:
fn main() -> Int {
print("hello from jot")
0
}Run it:
jot run hello.jotSuggested workflow
- Use
jot checkwhile editing to get type errors quickly. - Keep modules small and cohesive.
- Add signatures at API boundaries even when inference works.