hypoloop/examples/particles/src/main.rs
2021-08-11 13:21:12 -07:00

10 lines
127 B
Rust

use hypoloop::Simulation;
fn main() {
// create sim
let mut sim = Simulation::new();
// run sim
sim.run();
}