Updated docs and comments

This commit is contained in:
2024-12-11 17:07:49 +11:00
parent 476a79b746
commit 5f4dfdccc5
7 changed files with 74 additions and 32 deletions

View File

@@ -54,7 +54,7 @@ fn fib(n: int) {
}
for (var i = 1; i <= 10; i++) {
print i .. ":" .. fib(i); //type coercion syntax isn't final
print i.toString() .. ":" .. fib(i).toString();
}
```