Lets say I need to do:
a = "n1"
b = "n2"
Note ("sum = " ..(a + b))
And this a couple of times in a script with different n1 and n2.
Lazy as I am, I want put something in my script that lets
me type 'dosum (n1,n2)' and it would do the same as above.
How would i go about this?
The example above is just to explain what I want to do,
I'll try and work my way from there to what I need.
a = "n1"
b = "n2"
Note ("sum = " ..(a + b))
And this a couple of times in a script with different n1 and n2.
Lazy as I am, I want put something in my script that lets
me type 'dosum (n1,n2)' and it would do the same as above.
How would i go about this?
The example above is just to explain what I want to do,
I'll try and work my way from there to what I need.