blob: 40d83850efcc4c683de1000150af59bf853f7de4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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.
|