tw17220.pp 249 B

1234567891011121314
  1. program project1;
  2. {$ifdef fpc}
  3. {$mode objfpc}{$H+}
  4. {$endif}
  5. uses SysUtils, uw17220;
  6. var
  7. A, B: int64;
  8. begin
  9. writeln(uw17220.IntToHEX(16, 0)); {Here ERROR: called SysUtils.IntToHEX }
  10. if uw17220.IntToHEX(16, 0)<>'passed' then
  11. halt(1);
  12. end.