mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 04:48:02 +02:00
15 lines
146 B
ObjectPascal
15 lines
146 B
ObjectPascal
var
|
|
i: byte;
|
|
j: integer;
|
|
c: char;
|
|
Begin
|
|
case i of
|
|
Ord('x'): ;
|
|
end;
|
|
case j of
|
|
Ord('x'): ;
|
|
end;
|
|
case c of
|
|
Chr(112): ;
|
|
end;
|
|
end. |