diff --git a/README.md b/README.md index b9b9653..724c63a 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/src/bellos.rs b/src/bellos.rs index 9275f38..154b5a7 100644 --- a/src/bellos.rs +++ b/src/bellos.rs @@ -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();