Difference between revisions of "Pascal"

From Computer History Wiki
Jump to: navigation, search
m (Fixed example, corrected Wirth reference.)
m (ops, indentation error.)
Line 6: Line 6:
 
begin
 
begin
 
   writeln('hello world');
 
   writeln('hello world');
  end.
+
end.
 
</pre>
 
</pre>
  

Revision as of 23:44, 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.