blob: 03c5b1ce7f59a43ff91f4024f3f0182aea4ac9a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{ Old file: tbs0130.pp }
{ in [..#255] problem OK 0.99.6 (PFV) }
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.
|