Code: Select all
CLS
INPUT "IF YOUR TEXT IS LONG IT WILL NOT WRAP",text$
PRINT text$
WAIT KEY RELEASE
Code: Select all
CLS
INPUT "IF YOUR TEXT IS LONG IT WILL NOT WRAP",text$
PRINT text$
WAIT KEY RELEASE
In fact this is the expected behavior, or, better, it is a behavior derived from the fact that the input via INPUT or LINE INPUT do not have screen management, nor line oriented editing. I think it is something that could be useful, but I would like to take inspiration from something that exists, so as not to invent yet another variant. Could you be so kind as to send me a specification or a behavior that you would expect the system to have, if implemented well?