all: fixed memleaks; compiler: closures work

This commit is contained in:
2017-09-07 17:41:27 +02:00
parent a37ec816e6
commit 682bc9db60
9 changed files with 180 additions and 44 deletions

View File

@@ -111,6 +111,6 @@ Value display(Value v) {
return v;
}
Value numEqual(Value a, Value b) {
Value equal(Value a, Value b) {
return MakeInt(a.z.value == b.z.value);
}