kind of works

This commit is contained in:
Nilstrieb 2021-03-02 21:59:13 +01:00
parent be61bdeaa5
commit f4b33c7c03
3 changed files with 87 additions and 38 deletions

View file

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