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

10 lines
168 B
Plaintext

let wrapper(number, threshold) {
let square(x) {
if x*x > threshold
then x
else x*x
}
in square(number)
}
in wrapper(4, 10)