lua-users home
lua-l archive

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


How to determine the correct data type used in function argument? e.g.

function incr (n)
 -------------------    which type of what?
 n = n .. "foo"

 n = n + 1

end