mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 10:48:30 +02:00
19 lines
267 B
ObjectPascal
19 lines
267 B
ObjectPascal
{ Old file: tbs0084.pp }
|
|
{ no more pascal type checking OK 0.99.1 (FK) }
|
|
|
|
{$R-}
|
|
|
|
{ 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.
|