I have the following code that looks like this
[a,b,c,d] = ["a","b","c","d"]
The compiler reports the warning:
Warning: Definition but no type signature for 'a'
Inferred type: a :: [Char]
How to silence the warning and specify the type for this expression?