We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6d16da3 + e485403 commit 4e7a364Copy full SHA for 4e7a364
generator/Lazarus/src/generator.lpr
@@ -148,13 +148,12 @@ procedure TOneBRCGenerator.DoRun;
148
Exit;
149
end;
150
151
-
152
inputFilename:= ExpandFileName(inputFilename);
153
outputFilename:= ExpandFileName(outputFilename);
154
155
WriteLn('Input File : ', inputFilename);
156
WriteLn('Output File: ', outputFilename);
157
- WriteLn('Line Count : ', FormatFLoat('#'+DefaultFormatSettings.ThousandSeparator+'##0', lineCount));
+ WriteLn('Line Count : ', Format('%.0n', [lineCount * 1.0]));
158
WriteLn;
159
160
FGenerator:= TGenerator.Create(inputFilename, outputFilename, lineCount);
0 commit comments