CPS-Transformation (continuation passing style):
f == (abs (x y) (let ( ... ) v))
f-cps == (abs (x y k) (let ( ... ) (k v))
aus g (f 3 2) wird f-cps 3 2 g-cps
g (f 3 2)
f-cps 3 2 g-cps