Advertisement
Guest User

Untitled

a guest
Oct 18th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. let rec mniejsze (list,element) =
  2. if list=[] then true
  3. else if List.hd list>=element then false
  4. else mniejsze List.tl list element;;
  5.  
  6.  
  7. mniejesze ([1;2;4],7);;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement