Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- let czyWszystkieNieujemne lista =
- let rec zliczUjemne = function
- | h :: t -> if h < 0 then 1 + (zliczUjemne t) else (zliczUjemne t)
- | [] -> 0
- if (zliczUjemne lista) > 0 then false else true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement