j
k
j a
j l
addToSPair :: Char -> (String, String) -> (String, String)
What about: addToSPair :: Char -> String -> String -> (String,String) so that the pattern match is: addToSPair c xs ys = (c:xs,ys) This is irrefutable? Keean.
Back to the thread
Back to the list