A86: Strings and stuff
[Prev][Next][Index][Thread]
A86: Strings and stuff
How does one append strings in assembly? Here's an example:
I create some string from a real value and store it into some op, say
op1...what if I store op1 into op2, repeat the process, getting another
string in op1, and wish to output op1 appended to op2: how would I do this?
in BASIC: set a="1", b="2"; a+b="12"
Also, how do I get the dimensions of an arrayed variable? Is it part of the
variable's name, like data type?
in BASIC: set a={1,2,3}; diml a=3 or set a==[[1,2][3,4]]; dim a={2,2}
Follow-Ups: