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

7 lines
132 B
Plaintext

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