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