OPTION PROMPT string$
Sets the command prompt to the contents of ‘string$’ (which can also be an expression which will be evaluated when the prompt is printed).
For example:
OPTION PROMPT “Ok “
OPTION PROMPT TIME$ + “: “
OPTION PROMPT CWD$ + “: “
Maximum length of the prompt string is 48 characters. The prompt is reset to the default (“> “) on power up but you can automatically set it by saving the following example program as “AUTORUN.BAS” on the internal flash drive A:.
OPTION PROMPT “My prompt: “
My prompt:
Leave a Reply