Does FORMAT$ have to be buffered before anything appears?
Try with a larger value for x& and it can take much longer.
Try with a larger value for x& and it can take much longer.
Code:
FUNCTION PBMAIN () AS LONG ? "Why does this take 8-seconds to appear?" FOR x& = 1 TO 3000 ? FORMAT$(x&,"#,"); NEXT END FUNCTION
Comment