Tentatively start working on a language to analyze
This commit is contained in:
parent
512cd22be5
commit
a55c786a51
10
Language.agda
Normal file
10
Language.agda
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
module Language where
|
||||||
|
|
||||||
|
open import Data.String using (String)
|
||||||
|
open import Data.Nat using (ℕ)
|
||||||
|
|
||||||
|
data Expr : Set where
|
||||||
|
_+_ : Expr → Expr → Expr
|
||||||
|
_-_ : Expr → Expr → Expr
|
||||||
|
`_ : String → Expr
|
||||||
|
#_ : ℕ → Expr
|
Loading…
Reference in New Issue
Block a user