summary refs log tree commit diff
path: root/examples/5.src
diff options
context:
space:
mode:
Diffstat (limited to 'examples/5.src')
-rw-r--r--examples/5.src9
1 files changed, 9 insertions, 0 deletions
diff --git a/examples/5.src b/examples/5.src
new file mode 100644
index 0000000..ad96168
--- /dev/null
+++ b/examples/5.src
@@ -0,0 +1,9 @@
+let print_input = (input) => {
+	print(input);
+	return input;
+};
+
+
+let main = () => {
+	return print_input(7);
+};