new lua_fn make_string_version

This commit is contained in:
Anatoliy Belyanskiy 2023-08-17 20:27:31 +10:00
parent dd98f391c9
commit 64c3057bce

View File

@ -429,3 +429,10 @@ function increase_build(fname)
return build return build
end end
-- []===========================[] -- []===========================[]
-- []===========================[]
function make_string_version(ver_, mod_, build_)
return (tostring(ver_) .. "." .. tostring(mod_) .. "." .. tostring(build_))
end
-- []===========================[]