Advertisement
Guest User

Krotka

a guest
Feb 4th, 2017
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
F# 0.21 KB | None | 0 0
  1. let rec czyDzienMiesac lista : bool list =
  2.     match lista with
  3.     | x::xs -> match x with
  4.                | (a,(b,c,d),e) -> if b = c then true::czyDzienMiesac xs else false::czyDzienMiesac xs
  5.     | [] -> []
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement