uw17220.pp 234 B

1234567891011121314151617
  1. unit uw17220;
  2. {$ifdef fpc}
  3. {$mode objfpc}{$H+}
  4. {$endif}
  5. interface
  6. function IntToHEX(Value, Digits: int64): string; overload;
  7. implementation
  8. function IntToHEX(Value, Digits: int64): string;
  9. begin
  10. IntToHEX := 'passed';
  11. end;
  12. end.