Files
Construction-of-Compilers/Project-02-03/triplaprograms/p5.tripla
2025-12-07 23:12:35 +01:00

10 lines
163 B
Plaintext

let func(a, b) {
let func(a, b) {
a * b
} in
do {
b = b + 1 * func(3, 1);
a = a - 1
} while ( a > 0 && b != a )
} in func(10, 8)