• + 1 comment

    Using list comprehension in Haskell

    mingle :: String -> String -> String
    mingle a b = concat [[x, y] | (x, y) <- zip a b]