Can we change the Console Input() command so that it can display textt as well and have the answer cursor at the end of the line?
as it is now:
PrintN("You wish to quit (Y/N)")
answer$ = Input()
More like
answer$ = Input("You wish to QUIT (Y/N)")

Code: Select all
answer$ = Input("You wish to QUIT (Y/N)")
Code: Select all
Print("You wish to QUIT (Y/N)")
answer$ = Input()
Code: Select all
Procedure.s InputO ( Text$ )
Protected answer$
Print( Text$ )
answer$ = Input()
ProcedureReturn answer$
EndProcedure
Macro Input( _PARAMETER_ )
InputO( _PARAMETER_ )
EndMacro