From 8cfffbeccdab028f780dcaf9f4ffaf97d7393a1e Mon Sep 17 00:00:00 2001 From: Daniel Cerqueira Date: Sun, 16 Aug 2026 12:59:14 +0100 Subject: add diff operator - and remove and diff and differ - and update documentation - and update all lali scripts --- examples/mandelbrot.lali | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/mandelbrot.lali') diff --git a/examples/mandelbrot.lali b/examples/mandelbrot.lali index c07b07d..0268deb 100644 --- a/examples/mandelbrot.lali +++ b/examples/mandelbrot.lali @@ -6,7 +6,7 @@ "2" "3" "4" "5" "6" "7" "8" "9" "%" "*" "&" "$" "@" "#")) (defun mandelbrot-iter (x y x0 y0 i) - (fill ((dif i +28) " ") + (fill ((diff i +28) " ") ((not (> (+ (* x0 x0) (* y0 y0)) +4)) (nth i mandelbrot-chars)) (f (mandelbrot-iter x y (+ (- (* x0 x0) (* y0 y0)) x) (+ (* +2 x0 y0) y) -- cgit