From a508076e54d5821eeea7fa0978538bedc42ec7ea Mon Sep 17 00:00:00 2001 From: zongor Date: Mon, 1 Sep 2025 16:18:09 -0400 Subject: [PATCH] Update README.org --- README.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.org b/README.org index a413c9f..66f70e2 100644 --- a/README.org +++ b/README.org @@ -76,7 +76,7 @@ Zirûl is a statically-typed language with **first-class arrays**, **immediate-m Arrays are **first-class values**: #+BEGIN_SRC zrl -real[3] pos = [1.0r, 2.0r, 3.0r]; +real[3] pos = [1.0, 2.0, 3.0]; real[4][4] mat = identity(); real[3] result = mat * pos; ! compiler generates matrix-vector multiply #+END_SRC