Standard ML is a functional programming language with type inference and some side-effects.
Elevate your Standard ML skills through 92 curated exercises across 0 core concepts. Master problem-solving with a structured learning path designed for modern developers.
Standard ML (SML) is one of the two main dialects of the ML programming language. ML was the first strong statically typed language, developed in the early 1970s at the University of Edinburgh.
Despite its age, SML feels very young in many ways; SML had features that mainstream languages would not pick up for decades and are still being experimented with today.
Here are some of ML's "cutting-edge" features:
SML was originally designed for developping proofs about first-order predicate calculus (read: computer programs) and it can have a distinct academic feel about it.
However, its emphasis on immutability and strong typing has led SML to be used in many fields where program correctness is paramount (compiler design, code analysis, financial systems, medical systems, etc...).
Learning SML makes you a better programmer, because it forces you to write code that is stateless and to use closures effectively.
It's also many programmers first introduction to pattern matching and (truely) strong typing. And because SML's type system is so strong and well-thought out, it often feels like you are working in a dynamically typed language instead.
There are several popular implementations:
You can find information on the language on each implementation's sites.
Algebraic data types
Easy to define and easy to use, with robust pattern matching and pattern-exhaustiveness.
Modular
Powerful and flexible system supporting information hiding and genericity.
Static typing
Safety first! Strong guarantees about the correctness of programs at compile time.
Functionally focused
All the benefits of functional programming with some imperative features.
Automatic type inference
The compiler can often calculate type from context. Programs become concise and easier to write.
Parametric polymorphism
Abstractions across data types - think templates in C++ or generics in Ada.
Algebraic data types
Easy to define and easy to use, with robust pattern matching and pattern-exhaustiveness.
Modular
Powerful and flexible system supporting information hiding and genericity.
Static typing
Safety first! Strong guarantees about the correctness of programs at compile time.
Functionally focused
All the benefits of functional programming with some imperative features.
Automatic type inference
The compiler can often calculate type from context. Programs become concise and easier to write.
Parametric polymorphism
Abstractions across data types - think templates in C++ or generics in Ada.