Search
 
SCRIPT & CODE EXAMPLE
 

PASCAL

pascal output

Program OutputInPascal;

Var
number : Integer;

Begin
    //Print and move to next line
    writeln('Hello World of Pascal!');
    
    //Print without moving to next line
    write('   => Math fact: ');
    
    //Print text and variables and move to next line
    number := 10;
    writeln('The double of ',number,' is ', number * 2);
    
    //Just move to next line (leave line empty)
    writeln();
End.
Comment

pascal print

WriteLn('Something')
Comment

PREVIOUS NEXT
Code Example
Powershell :: powershell display firewall rules name 
Powershell :: takeown command 
Powershell :: call function powershell 
Powershell :: download jira attachments powershell 
Powershell :: To look at a profile to see information about a wifi network 
Gdscript :: godot check left mouse button 
Gdscript :: godot update value in progressbar 
Clojure :: algorithm to reverse a string clojure 
Lisp :: lisp input 
Assembly :: tqdm label 
Assembly :: ror loading webview: Error: Could not register service workers: InvalidStateError: Failed to register a ServiceWorker: The document is in an invalid state.. 
Assembly :: multiply two numbers assembly lmc 
Assembly :: sparsefile 
Assembly :: how to check whether a row contains a numeric value or not in df 
Javascript :: jquery vslidation remove spaces from input 
Javascript :: js on page ready 
Javascript :: open ilnk target js 
Javascript :: refresh window js 
Javascript :: jquery accept only excel file 
Javascript :: check if a variable is undefined jquery 
Javascript :: media query js 
Javascript :: change input placeholder text jquery 
Javascript :: get current url js 
Javascript :: convert to objectid mongoose 
Javascript :: javascript async delay 
Javascript :: javascript refresh page every 30 seconds 
Javascript :: how to change a css variable with javascript 
Javascript :: hide header react navigation 
Javascript :: listing dir by nodejs 
Javascript :: javascript celcius to farenheit 
ADD CONTENT
Topic
Content
Source link
Name
3+6 =