What/How replace overload functions from Java in Lua?

Hi, 

I’m trying port some code from Java to Lua but I occured problem with overload function. One way is use different names for function with different arguments but I’m not sure it is the best solution. Do you know better way to solve my problem?

Thanks in advance :slight_smile:  

You will need unique function names in Lua as Lua is not a full OOP language.

You will need unique function names in Lua as Lua is not a full OOP language.