Fixed scripts for distribution

This commit is contained in:
2023-02-14 10:35:08 +00:00
parent 453afbab41
commit 71b57fd42c
3 changed files with 4 additions and 4 deletions

View File

@@ -5,5 +5,5 @@ fn fib(n : int) {
for (var i = 0; i < 20; i++) {
var res = fib(i);
print string i + ": " + string res + "\n";
print string i + ": " + string res;
}