Skip to content

Instantly share code, notes, and snippets.

@dminuoso
Created November 28, 2022 10:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dminuoso/04a8f69c6950babafa1c0ad869213e56 to your computer and use it in GitHub Desktop.
Save dminuoso/04a8f69c6950babafa1c0ad869213e56 to your computer and use it in GitHub Desktop.
:{
my_filter f (x:xs) = if f x
then x:my_filter f xs
else my_filter f xs
my_filter f [] = []
:}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment