pi/src/Value.idr

13 lines
164 B
Idris
Raw Normal View History

2022-04-23 15:18:06 +02:00
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