mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-11 17:41:40 +01:00
15 lines
175 B
ObjectPascal
15 lines
175 B
ObjectPascal
program testuid;
|
|
|
|
uses sysutils,uuid;
|
|
|
|
Var
|
|
T : TGUID;
|
|
P : PByte;
|
|
I : Integer;
|
|
|
|
begin
|
|
// GetURandomBytes(T,SizeOf(T));
|
|
CreateGUID(T);
|
|
Writeln(GUIDToString(T));
|
|
end.
|