tuple.lua@260f867d46c0
tuple.lua
Sun, 06 Aug 2023 14:32:25 +0300
- author
- Tuomo Valkonen <tuomov@iki.fi>
- date
- Sun, 06 Aug 2023 14:32:25 +0300
- changeset 42
- 260f867d46c0
- parent 35
-
2f927eae429b
- permissions
- -rw-r--r--
Preliminary breadcrumb support
--@module tuple
local tuple={}
function tuple.fst(a, b)
return a
end
function tuple.snd(a, b)
return b
end
return tuple