Hello,
Hi,
I have a script here
interleave :: [Integer] -> [Strings] ->
[String]
interleave (x:xs) (y:ys)
= words [a | a <- (unwords
[(show x), (filter (/= 1) y), "+"])]
Firstly, "Strings" is not a standard type. I suspect
you mean "String" so the type signature is
interleave :: [In
> "Stephanie" == Stephanie Randles <[EMAIL PROTECTED]> writes:
Stephanie> Hi, I have a script here
Stephanie> interleave :: [Integer] -> [Strings] -> [String]
Stephanie> interleave (x:xs) (y:ys) = words [a | a <- (unwords
Stephanie> [(show x), (filter (/= 1) y), "+"])]
S