RosettaCodeData/Task/String-prepend/Mathematica/string-prepend.math
2023-07-01 13:44:08 -04:00

2 lines
106 B
Text

a = "any text value";
a = "another string literal" <> a (* using concatenation (no built-in prepend) *)