Why might a program need a function like the one below:
function init(self)
reinitialize(self)
end
It seems redundant since all that is contained within the init function is another function and nothing else, yet I see programs with these function still.
What is the point/necessity of them? what do they do?