fpc/tests/tbs/tb0111.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

14 lines
239 B
ObjectPascal

{ 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.