summaryrefslogtreecommitdiff
path: root/tests/webtbs/uw17220.pp
blob: 9770a911d1560f122e377508617b130d3ec76399 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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.