createUuid()

This function allows to create Universally Unique Identifiers (UUID).

Synopsis

string createUuid();

Return Value

Returns the created UUID.

Description

This function allows to create Universally Unique Identifiers (UUID) which can be used to uniquely identify information. The string is formatted as five hex fields separated by hyphens ("-") and put in braces. E.g. {e6cf84b0-5ec6-4843-b973-08ba9e59be0e}

Example

main()
{
  string uuid = createUuid();
  DebugN(uuid);
}

Assignment

Miscellaneous functions

Availability

CTRL, UI