pas2js/packages/rtl/objpas.pas
2017-12-28 10:01:55 +00:00

31 lines
665 B
ObjectPascal

{
This file is part of the Pas2JS run time library.
Copyright (c) 2017 by Mattias Gaertner
See the file COPYING.FPC, included in this distribution,
for details about the copyright.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
**********************************************************************}
unit ObjPas;
{$mode objfpc}
interface
const
MinInt = -$10000000000000;
MaxInt = $fffffffffffff;
type
IntegerArray = array of Integer;
TIntegerArray = IntegerArray;
implementation
end.