about summary refs log tree commit diff stats
path: root/tutorial/task8c.mu
diff options
context:
space:
mode:
Diffstat (limited to 'tutorial/task8c.mu')
-rw-r--r--tutorial/task8c.mu7
1 files changed, 7 insertions, 0 deletions
diff --git a/tutorial/task8c.mu b/tutorial/task8c.mu
new file mode 100644
index 00000000..68d90c9a
--- /dev/null
+++ b/tutorial/task8c.mu
@@ -0,0 +1,7 @@
+fn f -> _/eax: int {
+  return 3
+}
+
+fn main {
+  var x/ecx: int <- f
+}