fpc/packages/libxml/examples/exutils.pas
ivost c5333b5be3 * updated file properties
git-svn-id: trunk@11524 -
2008-08-07 08:37:14 +00:00

25 lines
425 B
ObjectPascal

unit exutils;
interface
{$mode objfpc}
uses
SysUtils;
procedure printf(const msg: string; const args: array of const);
procedure printfn(const msg: string; const args: array of const);
implementation
procedure printf(const msg: string; const args: array of const);
begin
write(Format(msg, args));
end;
procedure printfn(const msg: string; const args: array of const);
begin
writeln(Format(msg, args));
end;
end.