Skip to content

Instantly share code, notes, and snippets.

@thomwiggers
Created September 16, 2013 12:42
Show Gist options
  • Save thomwiggers/6580215 to your computer and use it in GitHub Desktop.
Save thomwiggers/6580215 to your computer and use it in GitHub Desktop.
is_gelijk :: String String -> Bool
is_gelijk s1 s2
| size s1 == size s2 = is_gelijk_h s1 s2
= False
is_gelijk_h :: String String -> Bool
is_gelijk_h "" "" = True
is_gelijk_h s1 s2
| head s1 == head s2 = is_gelijk_h (tail s1) (tail s2)
= False
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment