Skip to content

Instantly share code, notes, and snippets.

@cohalz
Created January 26, 2014 08:58
Show Gist options
  • Save cohalz/8630323 to your computer and use it in GitHub Desktop.
Save cohalz/8630323 to your computer and use it in GitHub Desktop.
let rec filter p = function
| [] -> []
| x::xs -> if p x then x::filter p xs else filter p xs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment