list function has been added

This commit is contained in:
Sameer Rahmani 2020-01-01 16:37:32 +00:00
parent e6a5507820
commit f7128e915c
2 changed files with 1 additions and 1 deletions

View File

@ -45,6 +45,7 @@ public class RootScope extends AScope {
put("not", new NotFn());
put("conj", new ConjFn());
put("list", new ListFn());
put("first", new FirstFn());
// put("let", new LetFn());
// put("cond", new CondFn());
//put("reduce", new ReduceFn());

View File

@ -21,7 +21,6 @@ package serene.simple.builtin;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import serene.simple.IScope;
import serene.simple.ListNode;