RosettaCodeData/Task/Copy-a-string/I/copy-a-string.i
2023-07-01 13:44:08 -04:00

10 lines
131 B
OpenEdge ABL

//Strings are immutable in 'i'.
software {
a = "Hello World"
b = a //This copies the string.
a += "s"
print(a)
print(b)
}