Skip to content

Instantly share code, notes, and snippets.

@kjellski
Last active August 29, 2015 14:17
Show Gist options
  • Save kjellski/728697daacef1a639ea3 to your computer and use it in GitHub Desktop.
Save kjellski/728697daacef1a639ea3 to your computer and use it in GitHub Desktop.
filter
let rec filter p = function
| [] -> []
| (x::xs) -> if p x then x :: filter p xs
else filter p xs
filter (fun a -> a % 2 = 0) [1..10]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment