about summary refs log tree commit diff
path: root/examples/11.src
diff options
context:
space:
mode:
Diffstat (limited to 'examples/11.src')
-rw-r--r--examples/11.src6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/11.src b/examples/11.src
index a572883..f859a0b 100644
--- a/examples/11.src
+++ b/examples/11.src
@@ -1,10 +1,10 @@
-let main = () => {
-	let x = (a) => {
+let main = () => i64 {
+	let x = (a) => i64 {
 		print(a);
 		return 1;
 	};
 
-	let y = (f) => {
+	let y = (f) => i64 {
 		return f(2);
 	};