RosettaCodeData/Task/Copy-a-string/I/copy-a-string.i

11 lines
131 B
OpenEdge ABL
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
//Strings are immutable in 'i'.
software {
a = "Hello World"
b = a //This copies the string.
a += "s"
print(a)
print(b)
}