Node:Double, Next:, Previous:do, Up:Reference



Double

(Under construction.)

Synopsis


type
  Double = Real;

Description

Double is a synonym for the Real data type and supported for compatibility with other compilers.

Conforming to

Double is a Borland Pascal extension.

Example


program DoubleDemo;
var
  A: Double;  { There is nothing special with `Double'. }
  B: Real;
begin
  A := Pi;
  A := B
end.

See also