mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 14:49:33 +02:00
15 lines
180 B
ObjectPascal
15 lines
180 B
ObjectPascal
program tw32034;
|
|
|
|
{$H-}
|
|
|
|
var
|
|
s: String;
|
|
begin
|
|
for s in (['1char','2chars']) do begin
|
|
WriteLn(s);
|
|
if (s <> '1char') and (s <> '2chars') then
|
|
Halt(1);
|
|
end;
|
|
end.
|
|
|