done with 11

This commit is contained in:
2018-07-25 15:32:37 +02:00
parent 13106d1788
commit 5adcf93d74
12 changed files with 252 additions and 53 deletions

9
examples/thrice.lox Normal file
View File

@@ -0,0 +1,9 @@
fn thrice(f) {
for let i = 1; i <= 3; i = i + 1 {
f(i);
}
}
thrice(fn (a) {
print(a);
});