fpc/packages/uuid/examples/testuid.pp
joost fc2409d812 * Restructured makefiles for examples
git-svn-id: trunk@12412 -
2008-12-20 22:40:04 +00:00

15 lines
179 B
ObjectPascal

program testuid;
uses sysutils, macuuid;
Var
T : TGUID;
P : PByte;
I : Integer;
begin
// GetURandomBytes(T,SizeOf(T));
CreateGUID(T);
Writeln(GUIDToString(T));
end.