| Posted: 02:20pm 22 Aug 2022 |
Copy link to clipboard |
 Print this post |
|
I was just testing the CAT function again. The manual states that it's faster but at least the way I'm using it, this is not the case:
a$=chr$(170) b$=a$ c$=a$ d$=a$ e$=a$
timer=0 for i = 1 to 1000 a$=a$+b$+c$+d$+e$ a$=chr$(170) next print timer
timer=0 for i = 1 to 1000 cat a$,b$ cat a$,c$ cat a$,d$ cat a$,e$ a$=chr$(170) next print timer
|