mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 09:08:03 +02:00
9 lines
149 B
ObjectPascal
9 lines
149 B
ObjectPascal
program smalltest;
|
|
const
|
|
teststr : string = ' '#9#255#0;
|
|
begin
|
|
writeln(teststr);
|
|
teststr := 'gaga';
|
|
writeln(teststr);
|
|
end.
|