Name: Anonymous 2011-10-03 7:05
/prog/-quality rant: http://teddziuba.com/2011/10/node-js-is-cancer.html
$ ghci
GHCi, version 6.8.2: http://www.haskell.org/ghc/ :? for help
Loading package base ... linking ... done.
Prelude> ["Abc", 123]
<interactive>:1:8:
No instance for (Num [Char])
arising from the literal `123' at <interactive>:1:8-10
Possible fix: add an instance declaration for (Num [Char])
In the expression: 123
In the expression: ["Abc", 123]
In the definition of `it': it = ["Abc", 123]
Prelude>
$ ghci
GHCi, version 6.8.2: http://www.haskell.org/ghc/ :? for help
Loading package base ... linking ... done.
Prelude> "abc" == 123
<interactive>:1:9:
No instance for (Num [Char])
arising from the literal `123' at <interactive>:1:9-11
Possible fix: add an instance declaration for (Num [Char])
In the second argument of `(==)', namely `123'
In the expression: "abc" == 123
In the definition of `it': it = "abc" == 123
Prelude>