Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danue1/danube
The Danube Programming Language
https://github.com/danue1/danube
compiler danube interpreter language programming
Last synced: 10 days ago
JSON representation
The Danube Programming Language
- Host: GitHub
- URL: https://github.com/danue1/danube
- Owner: Danue1
- License: mit
- Created: 2020-07-21T16:44:26.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-11-03T05:53:43.000Z (about 1 year ago)
- Last Synced: 2023-11-03T15:43:34.871Z (about 1 year ago)
- Topics: compiler, danube, interpreter, language, programming
- Language: Rust
- Homepage:
- Size: 590 KB
- Stars: 36
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Danube Programming Language
Danube is a programming language strongly inspired by [Rust](https://github.com/rust-lang/rust/), but it is an interpreter language without a lifetime and ownership model.
## Hello, World!
```danube
fn main() {
let message = "Hello, World!";
println(message);
}
```The syntax can be found in [docs/Syntax.md](./docs/Syntax.md).
## Special Thanks
This language was named Danube by [@thehighestend](https://github.com/thehighestend)!
## License
This project is licensed under the MIT license. Please see the LICENSE file for more details.