aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorthefosk <marco@mashape.com>2015-11-06 21:22:07 -0800
committerthefosk <marco@mashape.com>2015-11-06 21:22:07 -0800
commitb1696f33dd7ae2b621ad8d04f1547df57731d6d0 (patch)
treef77bd2bb6215647d2681ae62f091aa813ec44fcb /README.md
downloadlua_uuid-b1696f33dd7ae2b621ad8d04f1547df57731d6d0.tar.gz
lua_uuid-b1696f33dd7ae2b621ad8d04f1547df57731d6d0.tar.bz2
lua_uuid-b1696f33dd7ae2b621ad8d04f1547df57731d6d0.zip
0.1-1 version
Diffstat (limited to 'README.md')
-rw-r--r--README.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..cfa7c92
--- /dev/null
+++ b/README.md
@@ -0,0 +1,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)
+``` \ No newline at end of file