6 lines
83 B
OpenEdge ABL
6 lines
83 B
OpenEdge ABL
//Text is mutable.
|
|
software {
|
|
var s = "Hello"
|
|
var c = copy(s)
|
|
print(c)
|
|
}
|