mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 23:49:45 +02:00
9 lines
105 B
ObjectPascal
9 lines
105 B
ObjectPascal
{$mode objfpc}
|
|
resourcestring
|
|
s = 'Hello world';
|
|
|
|
begin
|
|
if s<>'Hello world' then
|
|
halt(1);
|
|
end.
|