Advertisement
zxhouse

Untitled

Jan 6th, 2019
1,188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
F# 0.14 KB | None | 0 0
  1. let rec czyNieujemne(lista:rejestr) =
  2.    match lista with
  3.    | (k, (n, c))::tail -> if c<0 then false else czyNieujemne(tail)
  4.    | [] -> true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement