Pascal Language Tutorial
Programming in Pascal.
Pages
Home Page
Programming Languages Tutorials
Why Pascal ?
Why this tutorial ?
Is Pascal an old language ?
Compiler
Output on screen
Read from keyboard
Variables
Integers
Reals
Characters
Strings
Boolean
Control structures - Selection
if Structure
case structure
Control structures - Loops
Your Opinion
Output on screen
Use write (the cursor stays on the same line), writeln (the cursor goes to the next line) .
eg.
program a1;
begin
write('hello world!');
writeln('hello !');
end.
Home
Subscribe to:
Posts (Atom)