Are there native compilers for functional programming languages

functional-programming

Solution

This post is really quite unclear. The question appears to be "Are there compilers for functional languages which can produce native executables without the need to install additional software?"

The answer, generally, is yes. For example, Haskell has a compiler that produces native binaries. Many other functional languages have similar compilers.

Problem

Joel Spolsky praised native-code versions of programs that have no dependencies on runtimes. What native-code compilers are available for functional languages?

Original source