pi/src/Value.idr

13 lines
164 B
Idris

module Value
import Term
import Misc
%default total
public export
data NF : Type where
NType : NF
NDef : Name -> NF
NLam : NF -> (Term 1 -> PI NF) -> NF