latest pushes

This commit is contained in:
Ronaldson Bellande 2024-09-28 16:49:31 -04:00
parent 3117defdc6
commit c6090618d9
2 changed files with 7 additions and 1 deletions

View File

@ -13,6 +13,9 @@
- redirection support
# Usage of Bellande Rust Importer
- https://github.com/Architecture-Mechanism/bellande_importer
# Bellos executable run scripts
```
./bellos hello_world.bellos
@ -155,7 +158,7 @@ echo "Uppercase: ${string^^}"
echo "Lowercase: ${string,,}"
```
## Website NPM
## Website Crates
- https://crates.io/crates/bellos
### Installation

View File

@ -36,6 +36,9 @@ use std::process::{Child, Command, Stdio};
use std::sync::{Arc, Mutex};
use std::thread;
use bellande_rust_importer::{from_import, import, Importer};
use std::path::PathBuf;
fn main() -> Result<(), String> {
let mut interpreter = Interpreter::new();