Re: A86: 86<-->85


[Prev][Next][Index][Thread]

Re: A86: 86<-->85




The simple way, for small programs is to take all the <enter>'s out and
change all the " to spaces, store it as a string like so:

:disp "This is how you do it"
:outpt(1,1,"this is how you do it")

final-

:"disp _this is how you do it_:outpt(1,1,_this is how you do it_)"->a

variable a becomes a string, send the string and unpack it on the other
side. oh and turn the ->'s into spaces too


References: