Name record
Definition record:varargs.
record1(T1:type):type.
record2(T1:type,T2:type):type.
etc.
Example coords:type=record(x::int,y::int).
Defined in types.l
Implementation icode
Description A record declaration defines a type comprising a collection of fields of various types. Each field is named using the :: operator.