Copy a string: Difference between revisions

Added Haskell example
m (Changed over to works with template)
(Added Haskell example)
Line 223:
\ Copy the contents of one string buffer into another
stringa count stringb place
 
=={{header|Haskell}}==
 
In Haskell, every value is immutable, including ''String''s. So one never needs to copy them; references are shared.
 
=={{header|Java}}==
Anonymous user