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

Lua library that generate UUIDs leveraging [libuuid](http://linux.die.net/man/3/libuuid).

## Usage

To generate a new UUID string:

```lua
local uuid = require "lua_uuid"
local uuid_str = uuid()

print("New UUID: "..uuid_str)
```