Difference between revisions of "Pascal"
From Computer History Wiki
(added a quick thing about turbo pascal.) |
m (Fixed example, corrected Wirth reference.) |
||
| Line 1: | Line 1: | ||
| − | Pascal was a intermediate language which had some popularity in the 1980's. The language was written by | + | Pascal was a intermediate language which had some popularity in the 1980's. The language was written by Niklaus Wirth. |
== Hello world == | == Hello world == | ||
<pre> | <pre> | ||
| + | program hello; | ||
begin | begin | ||
| − | + | writeln('hello world'); | |
| − | end. | + | end. |
</pre> | </pre> | ||
Revision as of 21:43, 19 February 2012
Pascal was a intermediate language which had some popularity in the 1980's. The language was written by Niklaus Wirth.
Hello world
program hello;
begin
writeln('hello world');
end.
Compilers
- Turbo Pascal
Notes
The old Turbo Pascal 5.5 is now freely available here.