Type Synonyms

Posted by Beetle B. on Tue 02 August 2016
type aname = t

aname becomes an alias for type t. Useful for giving meaningful names:

type date = int*int*int

Think of it like typedef in C++.