mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 21:47:58 +02:00
14 lines
160 B
ObjectPascal
14 lines
160 B
ObjectPascal
|
|
{ Basic Pascal principles gone done the drain... !!!! }
|
|
var
|
|
v: word;
|
|
w: shortint;
|
|
z: byte;
|
|
y: integer;
|
|
Begin
|
|
y:=64000;
|
|
z:=32767;
|
|
w:=64000;
|
|
v:=-1;
|
|
end.
|