RosettaCodeData/Task/Binary_strings/Haskell/binary_strings-4.hs
Ingy döt Net 80737d5a6a new tasks
2013-04-09 00:46:50 -07:00

8 lines
249 B
Haskell

{- This is the most obvious way to
append strings, using the built-in
(++) concatenation operator
Note the same would work to join
any two strings (as 'variables' or
as typed strings -}
strAppend :: String -> String -> String
strAppend x y = x ++ y