tuple.lua

Mon, 07 Sep 2020 09:14:53 +0300

author
Tuomo Valkonen <tuomov@iki.fi>
date
Mon, 07 Sep 2020 09:14:53 +0300
changeset 38
5c771653d5ac
parent 35
2f927eae429b
permissions
-rw-r--r--

more ignores


--@module tuple
local tuple={}

function tuple.fst(a, b)
    return a
end

function tuple.snd(a, b)
    return b
end

return tuple

mercurial