kids encyclopedia robot

Standard ML facts for kids

Kids Encyclopedia Facts

Standard ML is a functional programming language which is a dialect of ML (programming language). It is sometimes used for writing compilers and in theorem provers.

Example

Here is an example of a factorial function written in a simple, non-tail recursive, style.

fun fac (0 : int) = 1    (*  the : int part means that 0 and n are integers *)
 |  fac (n : int) = n * fac (n - 1)

See also

Kids robot.svg In Spanish: Standard ML para niños

kids search engine
Standard ML Facts for Kids. Kiddle Encyclopedia.