123456789101112131415161718192021222324252627282930 |
- {
- 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.
|