How to compare two strings in haskell?

3
buscaLivroNome :: Livro -> Nome -> String
buscaLivroNome [] _ = "Nao Encontrado"
buscaLivroNome ((codigo,nome1,preco, autor, ano):resto) nome2 | nome1 == nome2 = "Livro Encontrado" | otherwise = buscaLivroNome resto nome2

I need to compare if the strings nome1 and nome2 are the same, but it is returning this error:

  

Exception: Prelude.read: no parse

    
asked by anonymous 11.08.2017 / 20:24

0 answers