RosettaCodeData/Task/String-append/Icon/string-append.icon

6 lines
66 B
Plaintext

procedure main()
s := "foo"
s ||:= "bar"
write(s)
end