Files
Construction-of-Compilers/Project-02-03-04-05/triplaprograms/simpleSequence.tripla
Jan-Niclas Loosen 8a40cb2636 New project structure
2026-03-03 16:45:00 +01:00

5 lines
115 B
Plaintext

let f(x) { x=2*x;
if (x>0) then x=x-1 else x;
while (x>0) do { x=x-1 }
}
in f(3)