This commit is contained in:
NikolajDanger
2022-05-15 12:54:29 +02:00
parent 383332077b
commit ba22cff91f
222 changed files with 23320 additions and 0 deletions

5
W2/fasto/tests/reduce.fo Normal file
View File

@ -0,0 +1,5 @@
fun int incr(int a, int b) = a + b
fun int main() =
let n = reduce(incr, 0, {1, 2, 3}) in
write(n)