finst version done, no steps tho

This commit is contained in:
Guilleag01
2025-09-21 19:36:46 +02:00
commit 709e19469c
14 changed files with 3141 additions and 0 deletions

15
src/main.rs Normal file
View File

@@ -0,0 +1,15 @@
use simplex_web::app::App;
fn main() {
// let fun = Evaluable::from_string("5 * ((2 - a) * 3)".to_string());
// println!("{:?}", fun.prefix);
// let mut val_values: HashMap<String, f32> = HashMap::new();
// val_values.insert("a".to_string(), 1.0);
// val_values.insert("b".to_string(), 2.0);
// val_values.insert("c".to_string(), 3.0);
// println!("{:?}", fun.evaluate(&val_values));
yew::Renderer::<App>::new().render();
}