| Crates.io | boron-lang |
| lib.rs | boron-lang |
| version | 0.26.0 |
| created_at | 2022-04-17 03:57:38.642392+00 |
| updated_at | 2022-07-24 17:11:30.576221+00 |
| description | A simple, efficient, compiled programming language. |
| homepage | |
| repository | https://github.com/hobbsbros/boron.git |
| max_upload_size | |
| id | 569289 |
| size | 101,424 |
Boron is a simple, light, readable, and efficient programming language.
More information about Boron syntax is continuously forthcoming. FORMAL-GRAMMAR.md provides an introduction to Boron grammar.
This repository holds the source code for the Boron compiler, boron. boron compiles Boron source code (.brn files) to output C source files (.c files).
boronThe Boron compiler is written fully in the Rust programming language and can be compiled with an up-to-date version of cargo.
Boron can be installed from the crates.io registry.
$ cargo install boron-lang
$ boron [input].brn
Boron can also be built and executed from source using the following commands.
$ git clone https://github.com/hobbsbros/boron.git
$ cd boron
$ cargo build --release
$ ./boron [input].brn