Created
September 16, 2013 12:42
-
-
Save thomwiggers/6580215 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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