From 364b08531b19bfe8d49521efd243430665f455bd Mon Sep 17 00:00:00 2001 From: Mattias Hansson Date: Thu, 20 Nov 2025 21:52:07 +0100 Subject: [PATCH] Fixed doc example --- syntax.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syntax.md b/syntax.md index 36127bb..5285a20 100644 --- a/syntax.md +++ b/syntax.md @@ -468,7 +468,7 @@ x = a+b ; constant expression (no spaces) OK if a,b are constants Use temporary variables: ``` temp = a + b -result = temp * c +result = temp - c ``` ### Constant Expressions