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

15 lines
181 B
ObjectPascal

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