Charlie Harvey

#692

In case you are curious... I was playing around with the data you are using in Haskell and came up with these two snippets:

filter (fromJust . fmap (> 16) . age) people filter (\p -> fromJust $ (> 16) <$> age p) people