Exemplo n.º 1
0
 public LispVariableDefinition2(IEnumerable <LispVariable> vars, LispBody body)
 {
     this.variables = vars;
     this.body      = body;
 }
Exemplo n.º 2
0
 public LispLambda(IEnumerable <LispVariable> formals, LispBody body)
 {
     this.formals = formals;
     this.body    = body;
 }