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