nicojensen.de/vendor/bundle/gems/rouge-3.3.0/lib/rouge/demos/fsharp

12 lines
316 B
Text
Raw Normal View History

2019-03-12 13:49:49 +01:00
(* Binary tree with leaves car­rying an integer. *)
type Tree = Leaf of int | Node of Tree * Tree
let rec existsLeaf test tree =
match tree with
| Leaf v -> test v
| Node (left, right) ->
existsLeaf test left
|| existsLeaf test right
let hasEvenLeaf tree =
existsLeaf (fun n -> n % 2 = 0) tree