initial commit

This commit is contained in:
nora 2021-03-01 17:00:02 +01:00
parent 7577fc6041
commit 764d2ff644
3 changed files with 308 additions and 25 deletions

View file

@ -1,3 +1,10 @@
use mandelbrot_set::Config;
fn main() {
println!("Hello, world!");
let config = Config::new(1, 3, 100, 100.0);
match mandelbrot_set::main(config) {
Ok(s) => println!("{}", s),
Err(e) => println!("Error: {}", e)
}
}