mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 08:28:08 +02:00
18 lines
234 B
ObjectPascal
18 lines
234 B
ObjectPascal
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.
|
|
|