RosettaCodeData/Task/String-concatenation/PL-I/string-concatenation.pli

7 lines
126 B
Text
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
declare (s, t) character (30) varying;
s = 'hello from me';
display (s || ' to you.' );
t = s || ' to you all';
display (t);