public Function(Env e, Eval ev) { this.env = e; this.eval = ev; this.env.Put(new Symbol("LAMBDA")); }
public Function(Env e) { this.env = e; this.eval = new Eval(this.env); this.env.Put(new Symbol("LAMBDA")); }