mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 00:48:10 +02:00
12 lines
192 B
ObjectPascal
12 lines
192 B
ObjectPascal
program test_formatloat;
|
|
{$mode objfpc}{$H+}
|
|
uses
|
|
SysUtils;
|
|
var
|
|
ef : Extended;
|
|
begin
|
|
ef := 12;
|
|
if (FormatFloat('#.#######E-0',ef) <> '1'+DecimalSeparator+'2E1') then
|
|
halt(1);
|
|
end.
|