Skip to content

Commit 036e527

Browse files
authored
Merge pull request #111 from JohanWiltink/main
Update lambda-calculus.js
2 parents 3993e3e + 211d64b commit 036e527

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lambda-calculus.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ export function toInt(term) {
166166
}
167167

168168
// parse :: String -> Env { String => Term }
169-
function parse(code) {
169+
export function parse(code) {
170170
function parseTerm(env,code) {
171171
function wrap(name,term) {
172172
const FV = term?.free?.() || new Set ; FV.delete("()");

0 commit comments

Comments
 (0)