physarum/src/main.rs

7 lines
114 B
Rust

use physarum::model;
fn main() {
let model = model::Model::new(4, 4, 20, 1);
println!("{:#?}", model);
}