https://github.com/aceinetx/zenlang
Primary programming language of ZenOS
https://github.com/aceinetx/zenlang
garbage-collection programming-language rust rust-lang
Last synced: 3 months ago
JSON representation
Primary programming language of ZenOS
- Host: GitHub
- URL: https://github.com/aceinetx/zenlang
- Owner: aceinetx
- License: agpl-3.0
- Created: 2025-09-21T18:41:21.000Z (5 months ago)
- Default Branch: master
- Last Pushed: 2025-10-27T20:00:09.000Z (3 months ago)
- Last Synced: 2025-10-27T21:03:43.070Z (3 months ago)
- Topics: garbage-collection, programming-language, rust, rust-lang
- Language: Rust
- Homepage: https://aceinetx.github.io/ZenLang/
- Size: 277 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
```rust
mod stdlib;
fn main {
println("Welcome to the ZenLang github repo!");
return null;
}
```
### Roadmap
- [x] Error handling
- [x] `if let` and `elif let`
- [x] File read/write functions
- [x] Function attributes like #[naked]
- [x] vmcall keyword
- [x] mod and dynmod keyword
- [x] module loading from files (depends on above)
- [x] more stdlib functions
- [x] ord
- [x] chr
- [x] number (convert str to number)
- [x] stringify (convert any to string)
- [x] boolean (convert str to boolean)