04-26-2007, 02:02 AM
your assining string vars like integer vars.
if a b and c are strings you assign values like this.
str a b c
a="1"
b="2"
c="3"
c.from is a string only function you're trying to make it add numbers together.
to do that it's just a simple
int a b c
a=1
b=2
c=3
c=a+b;;which will also equal 3
if a b and c are strings you assign values like this.
str a b c
a="1"
b="2"
c="3"
c.from is a string only function you're trying to make it add numbers together.
to do that it's just a simple
int a b c
a=1
b=2
c=3
c=a+b;;which will also equal 3
