about summary refs log tree commit diff
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/6.5.src3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/6.5.src b/examples/6.5.src
index 9aa1cac..9b8ee89 100644
--- a/examples/6.5.src
+++ b/examples/6.5.src
@@ -1,7 +1,8 @@
 let main = () => {
 	let x = 1;
 	if x == 1 {
-		x = 2;
+		x = 2 + 1;
+		print(x);
 	};
 	return x;
 };