pfpl/T.sig

15 lines
172 B
Standard ML
Raw Normal View History

2024-05-01 06:05:04 +00:00
sig T.
kind ty type.
kind tm type.
type nat ty.
type arr (ty -> ty) -> ty.
type zero tm.
type suc tm -> tm.
type lam string -> ty -> tm -> tm.
type ap tm -> tm -> tm.