aboutsummaryrefslogtreecommitdiff
path: root/readme.md
diff options
context:
space:
mode:
Diffstat (limited to 'readme.md')
-rw-r--r--readme.md11
1 files changed, 6 insertions, 5 deletions
diff --git a/readme.md b/readme.md
index bd1f455..7d0378d 100644
--- a/readme.md
+++ b/readme.md
@@ -16,11 +16,11 @@ while still benefitting from the advantages of syntactic linearity.
Mili's core syntactic representation consists of only five constructs:
``` haskell
-data Term = Abs Int Term -- | Abstraction at level
- | App Term Term -- | Application
- | Lvl Int -- | de Bruijn level
- | Num Nat -- | Peano numeral
- | Rec (Term, Nat) Term Term Term -- | Unbounded iteration
+data Term = Abs Int Term -- | Abstraction at level
+ | App Term Term -- | Application
+ | Lvl Int -- | de Bruijn level
+ | Num Nat -- | Peano numeral
+ | Rec (Term, Term) Term Term Term -- | Unbounded iteration
```
Lets and Pairs are only used in the higher-level syntax. This allows us
@@ -38,6 +38,7 @@ to use a minimal abstract reduction machine.
- [ ] `:test`
- [ ] `:import`
- [ ] more examples
+- [ ] compile to LLVM stack machine
## references