QB64 BUG: STRING$

by qbguy (no login)

This code:

X$ = STRING$(10, "*")

works in QBASIC, but does not work in QB64.

The workaround is to use ASC:

X$ = STRING$(10, ASC("*"))

Posted on Mar 9, 2008, 3:28 PM
from IP address 75.49.116.62

Respond to this message   

Return to Index


Response TitleAuthor and Date
*Thanks. Both forms are implemented, so perhaps it's a recently introduced problem on Mar 9