An open API service indexing awesome lists of open source software.

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

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)