Lua 5.4.0 (alpha-rc1) is now available for testing at
http://www.lua.org/work/lua-5.4.0-alpha-rc1.tar.gz
All feedback welcome. Thanks.
--lhf
Hi Luiz, is there any plans to support <toclose> and <const> (i.e. the annotation syntax) on the function parameters?
e.g.
function foo(<tobeclose> f, <const> cfg)
-- use f and cfg
end -- the f will be close and cfg can not modify in the function body
the most way to use "const" in C is use it as function parameter qualifier. So does Lua plan to support it?
P.S. the new syntax is ugly, indeed :-(