mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 14:07:57 +02:00
12 lines
140 B
ObjectPascal
12 lines
140 B
ObjectPascal
var
|
|
c : char;
|
|
begin
|
|
c:=#91;
|
|
if c in [#64..#255] then
|
|
writeln('boe');
|
|
c:=#32;
|
|
if c in [#64..#255] then
|
|
writeln('boe');
|
|
end.
|
|
|