https://github.com/antimony-lang/antimony
The Antimony programming language
https://github.com/antimony-lang/antimony
antimony compiler language programming sabre
Last synced: 3 days ago
JSON representation
The Antimony programming language
- Host: GitHub
- URL: https://github.com/antimony-lang/antimony
- Owner: antimony-lang
- License: apache-2.0
- Created: 2019-04-02T16:25:09.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2025-03-17T01:28:16.000Z (30 days ago)
- Last Synced: 2025-04-11T17:13:48.022Z (4 days ago)
- Topics: antimony, compiler, language, programming, sabre
- Language: Rust
- Homepage: https://antimony-lang.github.io/antimony/
- Size: 1.76 MB
- Stars: 149
- Watchers: 5
- Forks: 7
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Codeowners: CODEOWNERS
Awesome Lists containing this project
- awesome-programming-languages - Antimony - Antimony is a general-purpose toy language. Its primary goal is to be simple and easy to understand, not to be efficient. (Uncategorized / Uncategorized)
README
# The Antimony Programming Language
[](https://crates.io/crates/antimony-lang)

[](https://antimony-lang.github.io/antimony/latest)
[](https://matrix.to/#/#antimony:matrix.slashdev.space?via=matrix.slashdev.space)Antimony is a bullshit-free (©) programming language that gets out of your way.
It is meant to "just work", without adding unnecessary and bloated language features.## Why yet another language?
The goal of Antimony is to be a simple language that anyone - beginner and expert - can pick up and use. A "bullshit-free programming language" is of course a highly subjective opinion, and this project is my very own attempt at this. There are plenty of great programming languages out there, and Antimony is not meant to replace any of them. Currently, Antimony is just a general-purpose toy language. Its primary goal is to be simple and easy to understand, not to be efficient.
## Example
```rs
// examples/fib.sbfn main() {
let num = 10
println(fib(num))
}fn fib(n: int): int {
if n <= 1 {
return n
}return fib(n-1) + fib(n-2)
}// -> 55
```## State of this project
**Antimony is a hobby project** created to learn about compiler internals. It is not (yet) intended for production use.
Most algorithms should run fine, but some features may be unstable. Standard library and documentation are still incomplete. See the [open issues](https://github.com/antimony-lang/antimony/issues) for upcoming todos.
The Antimony compiler emits JavaScript for the Node.js runtime, and a C backend is currently under development. Backends for WASM and LLVM are planned.
## Documentation
Documentation is hosted [here](https://antimony-lang.github.io/antimony).
## Getting started
See the [installation](https://antimony-lang.github.io/antimony/latest/introduction/installation.html) instructions to get started.
## Getting in touch
[Join our Matrix room](https://matrix.to/#/#antimony:matrix.slashdev.space?via=matrix.slashdev.space)!
## License
This software is licensed under the [Apache-2.0 license](./LICENSE).