So I want to make my own calculator program. I don't to use someone elses because this is the idea I've had for a program in such a long time. But anyway I'm using this code:
local args = {...}
local first = tonumber (args[1]) or 1
local second = tonumber (args[2]) or 1
I want to know if I can add a code in between line 2 and 3 that says:
local sign = tonumber (args[3]) or (something)
And then
print (first (how to run the sign so I can choose whatever sign I want) second)
So basically it takes first and second, and does whatever to them that the sign thing says. If there's not really a way to make this way work please tell me a way that will.