Skip to content

Instantly share code, notes, and snippets.

@thomwiggers
Created September 16, 2013 12:46
Show Gist options
  • Save thomwiggers/6580239 to your computer and use it in GitHub Desktop.
Save thomwiggers/6580239 to your computer and use it in GitHub Desktop.
is_deel :: String String -> Bool
is_deel a b = size a <= size b && (is_gelijk a ""
||
head a == head b && is_deel (tail a) (tail b)
||
is_deel a (tail b)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment