mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 01:08:09 +02:00
16 lines
161 B
ObjectPascal
16 lines
161 B
ObjectPascal
var
|
|
ch : char;
|
|
begin
|
|
ch:=#3;
|
|
case ch of
|
|
#0..#31 : ;
|
|
else
|
|
writeln('bug');
|
|
end;
|
|
case ch of
|
|
#0,#1,#3 : ;
|
|
else
|
|
writeln('bug');
|
|
end;
|
|
end.
|