From ac58713fe13a13a6f91f7115a28a279fb4fb556c Mon Sep 17 00:00:00 2001 From: lisyarus Date: Thu, 7 May 2026 13:47:27 +0300 Subject: [PATCH] Fix mandelbrot example --- examples/mandelbrot.psl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/mandelbrot.psl b/examples/mandelbrot.psl index a0beafb..78569bb 100644 --- a/examples/mandelbrot.psl +++ b/examples/mandelbrot.psl @@ -28,3 +28,5 @@ func mandelbrot(): x = x + 1 y = y + 1 print('\n') + +mandelbrot()