-
Notifications
You must be signed in to change notification settings - Fork 1
Home
Bryantad330 edited this page May 23, 2026
·
9 revisions
Sona is an AI-native programming language and developer toolchain focused on clear execution, readable diagnostics, deterministic examples, and cognitive accessibility.
Current release: 0.14.0
- Quick Start
- Language Reference
- Standard Library
- Diagnostics
- Package and Examples
- VS Code
- Receipt Explorer
Sona requires Python 3.11 or newer.
python -m pip install sona-lang
sona --versionExpected output shape:
Sona 0.14.0
Create a local file first. The first-run path does not require a source checkout.
Bash or macOS/Linux shell:
echo 'print("Hello, Sona!")' > hello.sona
sona hello.sonaWindows PowerShell:
'print("Hello, Sona!")' | Out-File -Encoding utf8 hello.sona
sona hello.sonaExpected output:
Hello, Sona!
- A Python-hosted runtime and CLI for
.sonaprograms. - A stable first-run path for new developers.
- Clear user-facing diagnostics with actionable hints.
- A source-validated official example suite.
- Standard library documentation for stable user-facing modules.
- VS Code support for
.sonaand.smodfiles. - Receipt Explorer support for Sona execution audit trails.
The source repository is Bryantad/Sona.
The Python package is intentionally lean. Docs, examples, tests, extension sources, local reports, and build artifacts are source-repository materials and are excluded from release wheels and sdists.