From 60adb6e2f051ab72fb66541a8f48ef195317d403 Mon Sep 17 00:00:00 2001 From: Charles Date: Tue, 27 Aug 2019 15:30:51 +0200 Subject: Initial commit Compute if a number is in Mandelbrot set. Print it to the terminal. --- main.c | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 main.c (limited to 'main.c') diff --git a/main.c b/main.c new file mode 100644 index 0000000..f1fb7af --- /dev/null +++ b/main.c @@ -0,0 +1,7 @@ +#include "header.h" + +int main(void) +{ + mandelbrot_print(); + return 0; +} -- cgit