haskell merge lists code example
Example 1: how to concatenate lists in haskell
"hello " ++ "world"
Example 2: haskell merge lists
--input:
[1,2] ++ [3,4]
--output:
[1,2,3,4]
"hello " ++ "world"
--input:
[1,2] ++ [3,4]
--output:
[1,2,3,4]