Skip to content

Instantly share code, notes, and snippets.

View calebh's full-sized avatar

Caleb Helbling calebh

View GitHub Profile
type Kind = Star | KFun of Kind * Kind
type BaseTyCon = TyConNumber
| TyConBool
| TyConUnit
| TyConList
| TyConFun
| TyConTuple
| TyConUserDefined of string
type TyCon = TyCon of BaseTyCon * Kind