Skip to content

Commit d13b5f0

Browse files
committed
up
1 parent af13731 commit d13b5f0

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

TODO.md

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
> Use parser combinators.
44
5+
[lang2] `docs/lang2` -- examples
6+
[lang2] Exp -- Block
7+
[lang2] Exp -- Where
58
[lang2] `syntax/parseStmt`
69

710
[lang2] recursive function + datatype

docs/lang2/README.md

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Lang2
2+
3+
Interpreter of lambda calculus with explicit substitution.
4+
5+
- The meaning of scheme's `(let)` can be viewed as explicit substitution.
6+
But the `let` here is like scheme's `(let*)`,
7+
and we use `where` as syntax for explicit substitution instead.
8+
9+
```cicada
10+
let name = body
11+
function name(arg, ...) body
12+
import "./file.scm"
13+
compute exp
14+
15+
f(a)
16+
f(a, b)
17+
(name) => ret
18+
exp where {
19+
name = exp
20+
name = exp
21+
}
22+
{
23+
let name = exp
24+
return body
25+
}
26+
```

0 commit comments

Comments
 (0)