Does HotPaw Basic support using a mid$ function on the left side of an
equal sign? I get a syntax error, but I know it works in other
dialects of Basic. I know how to get around it, if it is not available.
Here is a test code fragment of what i want to do:
10 dim a$(10),s$(5)
20 a$(1)='0000053008 1823 0Interest'
40 s$(2) =' 17.84'
50 amt=val(s$(2))*100
60 amo$=fn format$(amt, "#######.")
70 mid$(a$(1),11,7)=amo$
80 print a$(1)