Function in variable

I saw that this is autorize in lua:

local Variable = function() a thing end

does anybody know how to use the function in Variable ?

local Variable = function()
end

it is exactly the same as local function Variable()

So just variable() would work ?

thanks that was basic but very helpful