7 lines
126 B
Text
7 lines
126 B
Text
|
|
declare (s, t) character (30) varying;
|
||
|
|
|
||
|
|
s = 'hello from me';
|
||
|
|
display (s || ' to you.' );
|
||
|
|
t = s || ' to you all';
|
||
|
|
display (t);
|