Library /sys$common/syshlp/basichelp.hlb SET PROMPT *Conan The Librarian (sorry for the slow response - running on an old VAX) |
The SET PROMPT statement enables a question mark prompt to appear after BASIC executes an INPUT, LINPUT, INPUT LINE or MAT INPUT statement on channel zero - this is the default behavior. The SET NO PROMPT statement disables the question mark prompt. Note that the SET PROMPT statement is *not* synonomous with the SET command and therefore cannot be used in immediate mode. For information on the various graphics SET statements, type "Graphics SET_Statements" at the help facility prompt "Topic?". Example DECLARE STRING your_name, your_age, your_grade INPUT "Enter your name";your_name SET NO PROMPT INPUT "Enter your age";your_age SET PROMPT INPUT "Enter the last school grade you completed";your_grade
Additional Information (explode) :
|