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