Esto es lo que he intentado hacer en ghci:¿Por qué los ejemplos de Data.Text no me funcionan?
import Data.Text
strip " abc "
me sale este mensaje de error:
<interactive>:1:6:
Couldn't match expected type `Text' against inferred type `[Char]'
In the first argument of `strip', namely `" abc "'
In the expression: strip " abc "
In the definition of `it': it = strip " abc "
que estaba esperando que esto funcione, ya que se da en muchas páginas web, incluyendo esta respuesta: In Haskell, how do you trim whitespace from the beginning and end of a string?
¿Qué estoy haciendo mal?
cadenas sobrecargados son más fáciles de activar añadiendo el pragma a la primera línea de su archivo .hs: '{- # IDIOMA OverloadedStrings # -}' –