summaryrefslogtreecommitdiffstats
path: root/src/mandelbrot.jl
diff options
context:
space:
mode:
Diffstat (limited to 'src/mandelbrot.jl')
-rw-r--r--src/mandelbrot.jl3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mandelbrot.jl b/src/mandelbrot.jl
new file mode 100644
index 0000000..614d490
--- /dev/null
+++ b/src/mandelbrot.jl
@@ -0,0 +1,3 @@
+function mandelbrot(z, c)
+ z.^2 + c
+end