From cd7f9a6a2a740a7edb5c3efe74ac11d6aca68d26 Mon Sep 17 00:00:00 2001 From: Maxwell Date: Thu, 2 Oct 2025 12:50:21 +1000 Subject: [PATCH] Fix another error in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f1caf97..450f4ec 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ You can use the output from one module inside another by enclosing it with `(`pa println (math 10 * 3 + 2) ``` -This will print the result of 10 * 3 + 2 (which happens to be 50.) +This will print the result of 10 * 3 + 2 (which happens to be 32.) You can initialise variables with the `let` module, and access variables by prefixing a `$` dollar sign.