\begin{code}
module LC.Terms where
open import LC.Variables
data Exp : Set where
var_ : Var → Exp -- variable value
lam : Var → Exp → Exp -- lambda abstraction
app : Exp → Exp → Exp -- application
variable e : Exp
\end{code}