11 lines
131 B
OpenEdge ABL
11 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)
|
||
|
|
}
|