• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
Noulakaz

Noulakaz

The blog of Avinash, Christina, Anya and Kyan Meetoo.

  • Home
  • About
  • People
    • Christina & Avinash Meetoo
    • Avinash Meetoo
    • Christina Meetoo
    • Anya Meetoo
    • Kyan Meetoo
  • General
    • News
    • Mauritius
    • Politics
    • Education
    • Business
    • Travel
  • Computing
    • Apple
    • Linux
    • LUGM
    • Programming
    • Web
    • Technology
    • Knowledge Seven
  • Entertainment
    • Music
    • Movies
    • Photography
    • Sports

Turbo Pascal 1.0 is 25 years old

10 November 2008 By Avinash Meetoo 17 Comments

Twenty-five years ago (on 20 November 1983 to be precise), something I consider very important happened: Borland released Turbo Pascal 1.0.

Turbo Pascal 1.0 was a small software application (only 68 kilobytes) that ran on MS-DOS and CP/M and which featured an IDE to develop console applications using the Pascal programming language.

 

I believe Turbo Pascal 1.0 was an important milestone because it allowed countless people of my age to learn structured programming using a programming language created by someone who was an expert in creating programming languages but also teaching and pedagogy, Niklaus Wirth. I believe that many students (and I am not alone) have difficulties learning programming today because of our focus on C-like languages like C++ and Java which are excellent tools for professionals but oh so lousy for teaching the Art of Programming.

I wrote a blog entry in 2007 to explain how I became a programmer. I wrote about my affection for Turbo-Pascal and GW-BASIC. [Incidentally, I believe a modern equivalent would be DrScheme which I like a lot and which I used last year to teach (sound) programming techniques to second year university students.]

Here is a small Hello World programme written in Pascal:

Program HelloWorld(output);
Begin
    Writeln('Hello, World!')
End.

A big thank you to all those who made Turbo-Pascal 1.0 possible.

Filed Under: Education, News, Programming, Technology

Reader Interactions

Comments

  1. Shah says

    11 November 2008 at 15:22

    Good ole’ times. BTW, there are still people coding Delphi.

  2. avinash says

    11 November 2008 at 20:56

    Yeah. 25 years have passed but I still have a lot of affection for those old IDEs which only required one floppy disk (remember those?)

  3. selven says

    12 November 2008 at 00:15

    My first real programming language i learnt and did most craziest thing that i wanted to… actually that’s what made me find programming cooler than i already thought. [before that i had those dbase3 stuffs and qbasic, which i did find nice], but i really started having fun when i started learning turbo pascal.

    There was a time i used to play with it to make lots of crt graphics with turbo pascal [and lots of flashing colors display on screen which would now make me sick just watching it, but then i found it beautiful].

    lol am getting nostalgic :p used to be wake up everyday thinking up “what kind of mischievious app can i write in pascal to piss up my friends today in class”.

  4. selven says

    12 November 2008 at 00:18

    ahh yeah, it took me quite a time to understand how to use those debugger options, breakpoints etc.. in that textbased ide, i had no idea what those were until i started using pascal [never cared about it in qbasic]

  5. manzerkrane says

    13 November 2008 at 05:47

    What’s new boy ? melancholic about the past? I can still remember the daft green letters on my monochromatic screen on my 1st computer. When I started on Amiga, I felt like riding on a crest ….! but now they have dissolved into a sepia haze. I did my 1st animation on an Amiga.

  6. manzerkrane says

    13 November 2008 at 05:51

    Dear Avinash,
    Thx for being yourself, it is the first time I have felt the impulse of interacting with a Mauritian blogger. No prejudice, but just away from the puddle of ‘Beaches, picnic, landscapes ..or plain non salivating blurbs. Reckon with 350,000 users of DSL, there should be more like you on this scape. But thx for populating the network.
    Good work !

  7. avinash says

    13 November 2008 at 12:06

    Hi Manzerkrane,

    Thanks for the nice words. It’s great to know that people like the way I blog. As a matter of fact, It’s sometimes tough to be a blogger but oh so satisfying… thanks to people like you :-)

  8. Ashesh says

    13 November 2008 at 17:29

    Cool, 25 years – pascal.

    After Dbase III plus, I got the opportunity to have a greater interest in Programming by having fun with Pascal.

    I really enjoyed this programming language. Very Structured, Disciplined way of doing things.

    However, the mystery:
    Is Object Oriented Supported in Pascal?
    If so, could we have a code snippet that demonstrates the basic OOP concepts please?

    Thank you

  9. Webdesign Bureau says

    13 November 2008 at 19:40

    Strange enough, I didn’t get acquainted to programming when languages such as this one were the hit. I remember taking math lessons at the beginning of the 90s in a class where the teacher also gave programming lessons to Uni students in Mauritius and I was just like: “Wow, these guys must be freaking intelligent!”.

    The only problem for me was that, like in many Mauritian families, the parents decided of your future and mine did not want me to get into computer science because “professer anglais tape bel casse”. Some 10 years later I was studying Java2 and C in a French University.

  10. avinash says

    14 November 2008 at 07:56

    Hi Ashesh,

    Have a look at this document describing Object-Oriented Pascal. Incidentally, Turbo Pascal 5.5, which is downloadable freely, is also object-oriented.

  11. Alan Clark says

    26 November 2008 at 10:55

    unit PascalOOExample;

    interface

    type
    THelloWorldPrinter = class
    private
    const Text: string = ‘Hello World’;
    public
    procedure Execute; virtual;
    end;

    TGoodbyeWorldPrinter = class(THelloWorldPrinter)
    public
    procedure Execute; override;
    end;

    implementation

    procedure THelloWorldPrinter.Execute;
    begin
    Writeln(Text);
    end;

    procedure TGoodbyeWorldPrinter.Execute;
    begin
    inherited;
    writeln(‘Goodbye world’);
    end;

    end.

  12. avinash says

    26 November 2008 at 17:37

    Interesting toy example of the OO capabilities of Pascal. Incidentally, the book Applying UML and Patterns is an excellent book to learn Object-Oriented Analysis and Design.

  13. Igor says

    25 October 2009 at 00:52

    Turbo Pascal changed my life. I still remember those days in early 80s, Turbo Pascal on CP/M machines. I like Pascal because it is easy to write and easy to read. I also wrote Pascal compiler for 8051 microcontrollers (available for free at http://turbo51.com/ ). Thanks to Borland and Anders Hejlsberg for this fantastic piece of software.

  14. avinash says

    25 October 2009 at 07:55

    Thanks for your comment Igor. And congratulations for your work on Turbo51!

  15. Igor says

    15 May 2011 at 21:53

    Some time ago I wrote Turbo Pascal compiler in Turbo Pascal. Now the code is published at http://turbopascal.org/http://turbopascal.org/

  16. Avinash Meetoo says

    16 May 2011 at 01:34

    That’s excellent :-)

    I have great memories of learning the Art of Programming using Turbo Pascal
    (as well as Turbo C++).

Trackbacks

  1. El lenguaje de programación Turbo Pascal cumple 25 años - FayerWayer says:
    19 November 2008 at 20:08

    […] November 2008 marks the 25th anniversary of Turbo Pascal v1.0! (vía Avinash Meetoo: Blog) […]

Leave a Reply

Your email address will not be published. Required fields are marked *

Primary Sidebar

Our Personal Websites

Avinash Meetoo
Christina Meetoo
Anya Meetoo
Kyan Meetoo

Related Posts

  • Why are there so many programming languages?
  • The Story of Programming: great idea!
  • Scheme is a good language for beginners
  • Was the C Programming Language one of the best and, at the same time, one of the worst things to happen?

Random Posts

  • Synchronizing two computers using Amazon S3
  • PHP/MySQL and Linux courses to start shortly
  • Vint Cerf interview on Knowledge7.TV
  • My books on software architecture

Archives

  • May 2025 (2)
  • April 2025 (4)
  • January 2025 (3)
  • December 2024 (2)
  • November 2024 (2)
  • October 2024 (3)
  • September 2024 (7)
  • August 2024 (1)
  • July 2024 (1)
  • June 2024 (2)
  • May 2024 (3)
  • January 2024 (2)
  • December 2023 (1)
  • October 2023 (1)
  • September 2023 (4)
  • August 2023 (3)
  • July 2023 (1)
  • June 2023 (4)
  • May 2023 (1)
  • April 2023 (1)
  • March 2023 (5)
  • February 2023 (1)
  • December 2022 (1)
  • November 2022 (1)
  • October 2022 (4)
  • August 2022 (4)
  • July 2022 (3)
  • June 2022 (5)
  • May 2022 (5)
  • January 2022 (3)
  • December 2021 (2)
  • November 2021 (1)
  • October 2021 (1)
  • September 2021 (4)
  • August 2021 (2)
  • July 2021 (14)
  • May 2021 (2)
  • April 2021 (4)
  • March 2021 (9)
  • February 2021 (2)
  • January 2021 (1)
  • October 2020 (1)
  • September 2020 (1)
  • August 2020 (2)
  • July 2020 (5)
  • June 2020 (3)
  • May 2020 (5)
  • April 2020 (6)
  • March 2020 (2)
  • February 2020 (2)
  • January 2020 (2)
  • October 2019 (1)
  • September 2019 (2)
  • July 2019 (2)
  • June 2019 (1)
  • May 2019 (3)
  • April 2019 (2)
  • March 2019 (1)
  • February 2019 (1)
  • January 2019 (3)
  • December 2018 (1)
  • October 2018 (3)
  • August 2018 (2)
  • July 2018 (2)
  • June 2018 (1)
  • May 2018 (2)
  • April 2018 (1)
  • February 2018 (1)
  • December 2017 (1)
  • October 2017 (1)
  • September 2017 (1)
  • August 2017 (1)
  • July 2017 (1)
  • May 2017 (4)
  • April 2017 (3)
  • March 2017 (4)
  • February 2017 (5)
  • January 2017 (3)
  • October 2016 (1)
  • September 2016 (1)
  • August 2016 (4)
  • July 2016 (1)
  • June 2016 (1)
  • March 2016 (3)
  • February 2016 (3)
  • January 2016 (1)
  • December 2015 (1)
  • November 2015 (2)
  • September 2015 (1)
  • August 2015 (3)
  • March 2015 (1)
  • December 2014 (1)
  • November 2014 (4)
  • October 2014 (1)
  • March 2014 (2)
  • February 2014 (3)
  • December 2013 (1)
  • October 2013 (1)
  • September 2013 (1)
  • August 2013 (1)
  • July 2013 (1)
  • June 2013 (2)
  • May 2013 (1)
  • March 2013 (3)
  • January 2013 (2)
  • December 2012 (3)
  • November 2012 (4)
  • September 2012 (3)
  • August 2012 (2)
  • July 2012 (3)
  • June 2012 (2)
  • May 2012 (1)
  • April 2012 (2)
  • February 2012 (1)
  • January 2012 (4)
  • December 2011 (2)
  • November 2011 (1)
  • October 2011 (4)
  • September 2011 (2)
  • August 2011 (1)
  • July 2011 (2)
  • June 2011 (4)
  • April 2011 (7)
  • March 2011 (2)
  • February 2011 (1)
  • January 2011 (3)
  • November 2010 (3)
  • October 2010 (1)
  • September 2010 (2)
  • August 2010 (4)
  • July 2010 (2)
  • June 2010 (1)
  • May 2010 (3)
  • April 2010 (4)
  • March 2010 (3)
  • February 2010 (3)
  • January 2010 (5)
  • December 2009 (2)
  • November 2009 (3)
  • October 2009 (1)
  • September 2009 (5)
  • August 2009 (3)
  • July 2009 (1)
  • June 2009 (3)
  • May 2009 (2)
  • April 2009 (7)
  • March 2009 (12)
  • February 2009 (10)
  • January 2009 (5)
  • December 2008 (4)
  • November 2008 (11)
  • October 2008 (6)
  • September 2008 (7)
  • August 2008 (3)
  • July 2008 (8)
  • June 2008 (6)
  • May 2008 (5)
  • April 2008 (7)
  • March 2008 (6)
  • February 2008 (3)
  • January 2008 (6)
  • December 2007 (11)
  • November 2007 (10)
  • October 2007 (7)
  • September 2007 (9)
  • August 2007 (3)
  • July 2007 (7)
  • June 2007 (8)
  • May 2007 (14)
  • April 2007 (11)
  • March 2007 (18)
  • February 2007 (14)
  • January 2007 (15)
  • December 2006 (16)
  • November 2006 (10)
  • October 2006 (7)
  • September 2006 (8)
  • August 2006 (8)
  • July 2006 (6)
  • June 2006 (4)
  • May 2006 (13)
  • April 2006 (10)
  • March 2006 (11)
  • February 2006 (7)
  • January 2006 (14)
  • December 2005 (8)
  • November 2005 (6)
  • October 2005 (7)
  • September 2005 (2)
  • August 2005 (6)
  • July 2005 (2)
  • June 2005 (6)
  • May 2005 (15)
  • April 2005 (12)
  • March 2005 (3)
  • February 2005 (8)
  • January 2005 (3)
  • December 2004 (1)
  • November 2004 (2)
  • October 2004 (2)
  • September 2004 (3)
  • August 2004 (3)
  • July 2004 (3)
  • June 2004 (3)
  • May 2004 (6)
  • April 2004 (10)
  • March 2004 (12)
Creative Commons License This work is licensed by Avinash Meetoo under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 Unported License.