List.lua: add _VERSION to module, drop unused var

This commit is contained in:
Albert Krewinkel 2017-11-29 21:10:45 +01:00
parent a276bb0a8a
commit c65b514ed1
No known key found for this signature in database
GPG key ID: 388DC0B21F631124

View file

@ -22,14 +22,13 @@ THIS SOFTWARE.
-- @author Albert Krewinkel
-- @copyright © 2017 Albert Krewinkel
-- @license MIT
local M = {
_VERSION = "0.1.0"
}
------------------------------------------------------------------------
-- Metatable for lists
-- @type List
local List = {}
local List = {
_VERSION = "0.1.0"
}
function List:new (o)
o = o or {}