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