* uses crt is not needed in some tests.

git-svn-id: trunk@4112 -
This commit is contained in:
yury 2006-07-06 19:10:44 +00:00
parent 291b00529a
commit cdafea2ce7
3 changed files with 2 additions and 3 deletions

View File

@ -2,7 +2,6 @@
{ problem with methods OK 0.99.6 (FK) }
program ObjTest;
uses crt;
type
ObjectA = object

View File

@ -1,5 +1,5 @@
program prueba;
uses crt,math;
uses math;
var
i,resultado,exponente:integer;
begin

View File

@ -1,7 +1,7 @@
program test_0_to_power_6;
uses
crt,math;
math;
var
result,number,exponent : integer;
begin