Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PASCAL

wait for input in pascal

Program PauseUntilKey;

Begin
    writeln('Press any key to continue...');
    
    readln();      //pause program until any key is pressed
    
    writeln('Program Resumed!');
End.
 
PREVIOUS NEXT
Tagged: #wait #input #pascal
ADD COMMENT
Topic
Name
8+6 =