mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-05-02 22:13:44 +02:00
15 lines
181 B
ObjectPascal
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.
|