Search
 
SCRIPT & CODE EXAMPLE
 

PASCAL

pascal delay

Program DelayInPascal;
uses crt;       //required for delay()

begin
    Writeln('Waiting 1 second...');
    delay(1000);
    
    Writeln('Waiting 3.5 seconds...');
    delay(3500);
    
    Write('Program ended!');
End.

//*Note: The delay() function in Pascal is in milliseconds 
//       Therefore, delay(1000) is 1 second delay
Comment

PREVIOUS NEXT
Code Example
Pascal :: pascal while 
Pascal :: begin in pascal 
Pascal :: pascal 
Pascal :: Pascal Game 
Powershell :: powershell take ownership recursive command 
Powershell :: powershell replace character in string 
Powershell :: How to save Jira attachments using powershell 
Gdscript :: godot make string all lowercase 
Clojure :: what is var in Clojure 
Abap :: abap if statement 
Cobol :: Cobol reverse a string 
Assembly :: x86 assembly hello world 
Assembly :: how to import servo library in arduino 
Assembly :: sparsefile 
Assembly :: get public ssh key 
Javascript :: jquery vslidation remove spaces from input 
Javascript :: jquery add disabled to button 
Javascript :: jquery run code after 5 seconds 
Javascript :: use jquery 
Javascript :: vimeo playback speed 
Javascript :: Basic JavaScript: Use Recursion to Create a Range of Numbers 
Javascript :: vuex-module-decorators rawError globally 
Javascript :: autoplay owl carousel 
Javascript :: how to get element by title js 
Javascript :: check ip json 
Javascript :: shadow elevation react native 
Javascript :: javascript capitalize string 
Javascript :: remove all options from select jquery 
Javascript :: swiper.js cdn 
Javascript :: angular go to route 
ADD CONTENT
Topic
Content
Source link
Name
8+6 =