aboutsummaryrefslogtreecommitdiffstats
path: root/other.sy
diff options
context:
space:
mode:
Diffstat (limited to 'other.sy')
-rw-r--r--other.sy6
1 files changed, 3 insertions, 3 deletions
diff --git a/other.sy b/other.sy
index 3651af5..f959b3f 100644
--- a/other.sy
+++ b/other.sy
@@ -2,8 +2,8 @@ f :: fn {
print "f"
}
-// answer := 42
-g :: fn {
- // ret answer
+g :: fn -> int {
+ answer :: 42
+ ret answer
}