Example #1
0
        public static Expression Let(SExpr sexp, VariableDefinition variable, Expression value, 
			Expression body)
        {
            return new _Let (sexp, variable, value, body);
        }
Example #2
0
 public _Let(SExpr sexp, VariableDefinition variable, Expression value, Expression body)
     : base(sexp)
 {
     Variable = variable;
     Value = value;
     Body = body;
 }