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.src8
1 files changed, 8 insertions, 0 deletions
diff --git a/examples/6.src b/examples/6.src
new file mode 100644
index 0000000..573ee6a
--- /dev/null
+++ b/examples/6.src
@@ -0,0 +1,8 @@
+let print_input = (input) => {
+	print(input);
+	return input;
+};
+
+let main = () => {
+	return print_input(7);
+};