RosettaCodeData/Task/String-append/PL-I/string-append.pli
2023-07-01 13:44:08 -04:00

6 lines
123 B
Text

Cat: procedure options (main);
declare s character (100) varying;
s = 'dust ';
s ||= 'bowl';
put (s);
end Cat;