Previous: Source to Source Transformation, Up: Source Optimization [Contents][Index]
Source level optimization makes possible a clearer and more relaxed programming style:
labels
or flet
)
and tail-recursion in places where it is clearer. Local function
call is faster than full call.
let
variable is at least as efficient as setting an existing
variable, and is easier to understand, both for the compiler and the
programmer.
Previous: Source to Source Transformation, Up: Source Optimization [Contents][Index]