exutils.pas 425 B

12345678910111213141516171819202122232425
  1. unit exutils;
  2. interface
  3. {$mode objfpc}
  4. uses
  5. SysUtils;
  6. procedure printf(const msg: string; const args: array of const);
  7. procedure printfn(const msg: string; const args: array of const);
  8. implementation
  9. procedure printf(const msg: string; const args: array of const);
  10. begin
  11. write(Format(msg, args));
  12. end;
  13. procedure printfn(const msg: string; const args: array of const);
  14. begin
  15. writeln(Format(msg, args));
  16. end;
  17. end.