about summary refs log tree commit diff
path: root/examples/6.src
diff options
context:
space:
mode:
Diffstat (limited to 'examples/6.src')
-rw-r--r--examples/6.src13
1 files changed, 13 insertions, 0 deletions
diff --git a/examples/6.src b/examples/6.src
index 3c90471..44ff0e0 100644
--- a/examples/6.src
+++ b/examples/6.src
@@ -10,3 +10,16 @@ let main = () => i64 {
 	let i = print_input(1,4);
 	return print_input(7, 2) + i;
 };
+
+/*
+
+Expected stdout:
+
+1
+4
+7
+2
+
+Expected return: 14
+
+*/