MLton

Version of implementation MLton of programming language Standard ML

MLton

Examples:

Hello, World! - Standard ML (366):

print is a built-in function defined with the following type:

string -> unit

This means that it takes 1 string as a parameter, and returns the unit type, ().

print "Hello World\n";