I have a function that works fine:
z::Int->Int->[Char]
z x y =show(x)++show(y)++show(x*y)
It's really just a function that convert some numbers into a string. Then I quicksort the string with my quick sort function.
quicksort.z 2 3
but here I get the error
Couldn't match expected type `a0 -> [a1]' with actual type `[Char]'
In the return type of a call of `z'
In the second argument of `(.)', namely `z 2 3'
In the expression: flagskib . z 2 3
I tried fixes like parentheses and use of the $ function, but no help.
I appreciate any words on it. The problem is already fixed so the whole meaning of this post is to learn.