aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: cfa7c92468376d648c708f994bc65fc06c3e2f1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# lua_uuid

Lua library that generate UUIDs leveraging libuuid.

## Usage

To generate an unique UUID string:

```lua
local lua_uuid = require "lua_uuid"
local uuid_str = lua_uuid.generate()

print("The UUID is "..uuid_str)
```