RosettaCodeData/Task/String-concatenation/Icon/string-concatenation.icon
2023-07-01 13:44:08 -04:00

5 lines
140 B
Text

procedure main()
s1 := "hello"
write(s2 := s1 || " there.") # capture the reuslt for
write(s2) # ... the 2nd write
end