So I am doing this in GHCI
Prelude> show (5, 6)
will get me
Prelude> "(5,6)"
But I want to print out (5, 6) without the comma in between. So I tried
Prelude> show (5 6)
and I expect to get
Prelude> (5 6)
But it fails me with:
No instance for (Num (a1 -> a0))
arising from the literal `5'
Possible fix: add an instance declaration for (Num (a1 -> a0))
In the expression: 5
In the first argument of `show', namely `(5 4)'
In the expression: show (5 4)