Skip to content

Instantly share code, notes, and snippets.

@syusui-s
Created October 21, 2013 01:57
Show Gist options
  • Select an option

  • Save syusui-s/7077608 to your computer and use it in GitHub Desktop.

Select an option

Save syusui-s/7077608 to your computer and use it in GitHub Desktop.
search :: [Char] -> [Char] -> Bool
search [] _ = False
search _ [] = False
search a b
| str == b = True
| str /= b = search (tail a) b
where str = take (length b) a
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment