Repository URL to install this package:
Version:
3.0.0 ▾
|
unit uw17220;
{$ifdef fpc}
{$mode objfpc}{$H+}
{$endif}
interface
function IntToHEX(Value, Digits: int64): string; overload;
implementation
function IntToHEX(Value, Digits: int64): string;
begin
IntToHEX := 'passed';
end;
end.