fpc/tests/webtbs/tw32034.pp

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.