mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 01:47:59 +02:00
12 lines
127 B
ObjectPascal
12 lines
127 B
ObjectPascal
{ %NORUN }
|
|
|
|
program tw33898;
|
|
|
|
{$mode delphi}
|
|
|
|
uses sysutils;
|
|
|
|
begin
|
|
writeln(string.join('&', ['ab', 'cd']));
|
|
end.
|