mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-05-01 00:33:40 +02:00
15 lines
179 B
ObjectPascal
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.
|