[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: How determine data type used in function argument?
- From: Budi <budikusasi@...>
- Date: Mon, 20 Jun 2022 20:24:04 +0700
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