mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 04:47:57 +02:00
16 lines
133 B
ObjectPascal
16 lines
133 B
ObjectPascal
|
|
var
|
|
v: word;
|
|
w: shortint;
|
|
z: byte;
|
|
y: integer;
|
|
|
|
type
|
|
zz: shortint = 255;
|
|
Begin
|
|
y:=64000;
|
|
z:=32767;
|
|
w:=64000;
|
|
v:=-1;
|
|
end.
|