Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fpc-src / usr / share / fpcsrc / 3.2.0 / tests / webtbs / tw4215.pp
Size: Mime:
{ Source provided for Free Pascal Bug Report 4215 }
{ Submitted by "Tony Maro" on  2005-07-24 }
{ e-mail: tony@maro.net }
uses
  sysutils;
var
   MyCurrency: Currency;
begin
   CurrencyFormat := 0; // optional? It's my default anyway.
   MyCurrency := 12.53;
   writeln(MyCurrency); // this works
   writeln(format('%n',[MyCurrency])); // this doesn't
end.