Hello World in Standard ML
Every programming journey starts with Hello World. Let’s write our first Standard ML program and explore what makes this influential functional language special.
The Code
Create a file named …
Read more →Every programming journey starts with Hello World. Let’s write our first Standard ML program and explore what makes this influential functional language special.
Create a file named …
Read more →Standard ML takes a different approach to “variables” than most imperative languages. In SML, what other languages call variables are more accurately called value bindings — names bound to …
Read more →Operators are how you combine values into expressions, and Standard ML’s operators reveal a lot about its character as a statically-typed functional language. Because SML uses Hindley-Milner …
Read more →Control flow determines the order in which a program’s logic executes. In most imperative languages this means statements that branch and loops that iterate. Standard ML approaches the problem …
Read more →Showing 1–4 of 4 posts (page 1 of 1)