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