Does N7/6 have the ability or command to perform Basic's string(var, text$) command?
J
In the meantime... I can use something like...
function String(var, txt)
tmp = ""
for z = 1 to var
tmp = tmp + txt
next
return tmp
endfunc
J
In the meantime... I can use something like...
function String(var, txt)
tmp = ""
for z = 1 to var
tmp = tmp + txt
next
return tmp
endfunc
Logic is the beginning of wisdom.