Horizontally Aligned ASCII Art
Canvas, 1 byte
×
Try it here!
Haskell, 37 bytes
(unlines.).(.lines).zipWith(++).lines
Try it online!
IO as lists of lines would just be zipWith(++)
. :P
Python 2, 59 bytes
lambda y:'\n'.join(map(str.__add__,*map(str.splitlines,y)))
Try it online!