Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- let rec czyNieujemne(lista:rejestr) =
- match lista with
- | (k, (n, c))::tail -> if c<0 then false else czyNieujemne(tail)
- | [] -> true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement