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
Pascal :: pascal exception handling 
Pascal :: pascal sleep 
Pascal :: while do in pascal 
Pascal :: comment in pascal 
Pascal :: pascal const 
Powershell :: Take ownership of a file 
Powershell :: download jira attachments powershell 
Gdscript :: godot get scene root 
Gdscript :: GDScript typed variables 
Clojure :: clojure write file 
Lisp :: emacs switch horizontal vertical 
Assembly :: google apps script format date string 
Assembly :: javafx observable collection 
Assembly :: node js vulnerabilities 
Assembly :: gridbaglayout span 
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
9+7 =