Pain - made to order

This commit is contained in:
Rendo 2025-11-09 00:07:40 +05:00
commit 5e61ee8e70
5 changed files with 95 additions and 61 deletions

View file

@ -1,3 +1,9 @@
use crate::formula::Formula;
mod formula;
mod node;
fn main() {
println!("Hello, world!");
let formula = Formula::new();
dbg!(formula.run(vec![1f64]));
}