is_let : term -> bool
# is_let `let x = 1 in x + x`;; val it : bool = true # is_let `let x = 2 and y = 3 in y + x`;; val it : bool = true