pascalabcnet/TestSamples/FormatterTests/input/Program68.pas
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

10 lines
107 B
ObjectPascal

unit program68;
begin
foreach c : char in 'abcd' do
begin
if c = 'c' then continue;
writeln(c);
end;
end.