Oxygen Basic
Programming => Problems & Solutions => Topic started by: Aurel on May 05, 2015, 10:25:23 PM
-
In fact this is not problem than question...
what would be real purpose of this?
to record strings as variables ...
http://www.freebasic.net/forum/viewtopic.php?f=7&t=23527
-
The purpose might be faster parsing. Reading bytes directly is faster than using asc() on each character.
string s="abcdefgh"
byte b at strptr s
'b[1] == 97
'b[2] == 98
'...
-
The purpose might be faster parsing
aha ..i see ,i was thinking about something else