Programming languages
Pascal
Pascal is a procedural programming language, designed as a small, efficient language intended to encourage good programming practices using structured programming and data structuring. It is named in honor of the French mathematician, physicist, and philosopher Blaise Pascal.
Share this starting point
code.study/pascal
- Created by
- Niklaus Wirth
- First appeared
- 1970
- Official resource
- Visit the main website
Your first program
Hello, World!
program HelloWorld;
begin
writeln('Hello, World!');
end.