'@' can't be used to get string address
Posted: Tue Nov 15, 2016 9:44 pm
I don't know if this is a bug or a feature, but both PeekC and PeekU have 'offset' parameter and I can't access string via @.

This code doesn't work as well returning the same error:
What is the purpose of offset? Is there a point of using PeekC; that is, shouldn't all code be Unicode anyway?
Code: Select all
Define s.s
s = "abcdefgh"
Debug PeekU(@s, 0)

This code doesn't work as well returning the same error:
Code: Select all
Text$ = "Hello"
*Text = @Text$