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