lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On Fri, 02 Apr 2010 07:19:00 -0600, Vafa Khalighi <vafa@users.berlios.de> wrote:

Is there any way that I can convert my C codes to Lua?


In what sense? Do you want to use your compiled C function in Lua, or do you want to convert a C procedure into its equivalent in Lua? If the latter, it depends on how complex the code in question is: mathematic operations can be copied and pasted with no changes, but things such as pointer arithmetic will require heavy re-architecting of the code's design.