2 lines
87 B
Haskell
2 lines
87 B
Haskell
import Data.List
|
|
main = mapM putStrLn $ zipWith3 (\a b c -> [a,b,c]) "abc" "ABC" "123"
|