pi/src/Value.idr

13 lines
236 B
Idris

module Value
import Term
import Misc
%default total
public export
data NF : Type where
NType : NF -- Type of types
NLam : NF -> Term 1 -> NF -- Lambda abstraction
NPi : NF -> Term 1 -> NF -- Pi Type