mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 14:48:18 +02:00
18 lines
198 B
ObjectPascal
18 lines
198 B
ObjectPascal
program tw40305;
|
|
|
|
{$mode objfpc}
|
|
|
|
uses
|
|
SysUtils;
|
|
|
|
var
|
|
r: Real;
|
|
s: String;
|
|
begin
|
|
r := 2.42;
|
|
FormatSettings.DecimalSeparator:='.';
|
|
s := r.ToString;
|
|
if s <> '2.42' then
|
|
Halt(1);
|
|
end.
|