We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af13731 commit d13b5f0Copy full SHA for d13b5f0
TODO.md
@@ -2,6 +2,9 @@
2
3
> Use parser combinators.
4
5
+[lang2] `docs/lang2` -- examples
6
+[lang2] Exp -- Block
7
+[lang2] Exp -- Where
8
[lang2] `syntax/parseStmt`
9
10
[lang2] recursive function + datatype
docs/lang2/README.md
@@ -0,0 +1,26 @@
1
+# Lang2
+
+Interpreter of lambda calculus with explicit substitution.
+- The meaning of scheme's `(let)` can be viewed as explicit substitution.
+ But the `let` here is like scheme's `(let*)`,
+ and we use `where` as syntax for explicit substitution instead.
+```cicada
+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
21
+}
22
+{
23
+ let name = exp
24
+ return body
25
26
+```
0 commit comments