Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. # let rec mem x list =
  2. match list with
  3. [] -> false
  4. | hd::_ when hd = x -> true
  5. | _::tl -> mem x tl
  6. ;;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement