This commit is contained in:
2025-07-28 18:16:13 +02:00
commit 4a5488dff7
4 changed files with 81 additions and 0 deletions

16
src/main.rs Normal file
View File

@@ -0,0 +1,16 @@
mod collector;
use collector::Collector;
fn main() {
let mut _collector: Collector = Collector {
definitions: vec![(String::from(""), String::from(""))],
arguments: vec![(String::from(""), String::from(""))],
};
let test_string: String = String::from("(1 + 2) * 3");
let echo_string: String = _collector.eval(test_string);
println!("Result: {}", echo_string);
}