<?xml version="1.0" encoding="utf-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Turbo Pascal 1.0 is 25 years old</title>
	<atom:link href="http://www.noulakaz.net/weblog/2008/11/10/turbo-pascal-1-0-is-25-years-old/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.noulakaz.net/weblog/2008/11/10/turbo-pascal-1-0-is-25-years-old/</link>
	<description>My opinion on Teaching, Programming, Technology and Web 2.0 in Mauritius</description>
	<lastBuildDate>Fri, 12 Mar 2010 17:32:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: avinash</title>
		<link>http://www.noulakaz.net/weblog/2008/11/10/turbo-pascal-1-0-is-25-years-old/#comment-207049</link>
		<dc:creator>avinash</dc:creator>
		<pubDate>Sun, 25 Oct 2009 03:55:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.noulakaz.net/weblog/?p=1053#comment-207049</guid>
		<description>Thanks for your comment Igor. And congratulations for your work on Turbo51!</description>
		<content:encoded><![CDATA[<p>Thanks for your comment Igor. And congratulations for your work on Turbo51!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Igor</title>
		<link>http://www.noulakaz.net/weblog/2008/11/10/turbo-pascal-1-0-is-25-years-old/#comment-207014</link>
		<dc:creator>Igor</dc:creator>
		<pubDate>Sat, 24 Oct 2009 20:52:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.noulakaz.net/weblog/?p=1053#comment-207014</guid>
		<description>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.</description>
		<content:encoded><![CDATA[<p>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 <a href="http://turbo51.com/" rel="nofollow">http://turbo51.com/</a> ). Thanks to Borland and Anders Hejlsberg for this fantastic piece of software.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: avinash</title>
		<link>http://www.noulakaz.net/weblog/2008/11/10/turbo-pascal-1-0-is-25-years-old/#comment-164885</link>
		<dc:creator>avinash</dc:creator>
		<pubDate>Wed, 26 Nov 2008 13:37:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.noulakaz.net/weblog/?p=1053#comment-164885</guid>
		<description>Interesting toy example of the OO capabilities of Pascal. Incidentally, the book &lt;a href=&quot;http://www.amazon.com/exec/obidos/ASIN/0131489062/ref=nosim/noulakaznet-20&quot; rel=&quot;nofollow&quot;&gt;Applying UML and Patterns&lt;/a&gt; is an excellent book to learn Object-Oriented Analysis and Design.</description>
		<content:encoded><![CDATA[<p>Interesting toy example of the OO capabilities of Pascal. Incidentally, the book <a href="http://www.amazon.com/exec/obidos/ASIN/0131489062/ref=nosim/noulakaznet-20" rel="nofollow">Applying UML and Patterns</a> is an excellent book to learn Object-Oriented Analysis and Design.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alan Clark</title>
		<link>http://www.noulakaz.net/weblog/2008/11/10/turbo-pascal-1-0-is-25-years-old/#comment-164834</link>
		<dc:creator>Alan Clark</dc:creator>
		<pubDate>Wed, 26 Nov 2008 06:55:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.noulakaz.net/weblog/?p=1053#comment-164834</guid>
		<description>unit PascalOOExample;

interface

type
  THelloWorldPrinter = class
  private
    const Text: string = &#039;Hello World&#039;;
  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(&#039;Goodbye world&#039;);
end;

end.</description>
		<content:encoded><![CDATA[<p>unit PascalOOExample;</p>
<p>interface</p>
<p>type<br />
  THelloWorldPrinter = class<br />
  private<br />
    const Text: string = &#8216;Hello World&#8217;;<br />
  public<br />
    procedure Execute; virtual;<br />
  end;</p>
<p>  TGoodbyeWorldPrinter = class(THelloWorldPrinter)<br />
  public<br />
    procedure Execute; override;<br />
  end;</p>
<p>implementation</p>
<p>procedure THelloWorldPrinter.Execute;<br />
begin<br />
  Writeln(Text);<br />
end;</p>
<p>procedure TGoodbyeWorldPrinter.Execute;<br />
begin<br />
  inherited;<br />
  writeln(&#8216;Goodbye world&#8217;);<br />
end;</p>
<p>end.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: El lenguaje de programación Turbo Pascal cumple 25 años - FayerWayer</title>
		<link>http://www.noulakaz.net/weblog/2008/11/10/turbo-pascal-1-0-is-25-years-old/#comment-163915</link>
		<dc:creator>El lenguaje de programación Turbo Pascal cumple 25 años - FayerWayer</dc:creator>
		<pubDate>Wed, 19 Nov 2008 16:08:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.noulakaz.net/weblog/?p=1053#comment-163915</guid>
		<description>[...] November 2008 marks the 25th anniversary of Turbo Pascal v1.0! (vía Avinash Meetoo: Blog)    [...]</description>
		<content:encoded><![CDATA[<p>[...] November 2008 marks the 25th anniversary of Turbo Pascal v1.0! (vía Avinash Meetoo: Blog)    [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: avinash</title>
		<link>http://www.noulakaz.net/weblog/2008/11/10/turbo-pascal-1-0-is-25-years-old/#comment-163140</link>
		<dc:creator>avinash</dc:creator>
		<pubDate>Fri, 14 Nov 2008 03:56:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.noulakaz.net/weblog/?p=1053#comment-163140</guid>
		<description>Hi Ashesh,

Have a look at this &lt;a href=&quot;http://www.pascal-central.com/OOE-stds.html&quot; rel=&quot;nofollow&quot;&gt;document&lt;/a&gt; describing Object-Oriented Pascal. Incidentally, &lt;a href=&quot;http://dn.codegear.com/article/20803&quot; rel=&quot;nofollow&quot;&gt;Turbo Pascal 5.5&lt;/a&gt;, which is downloadable freely, is also object-oriented.</description>
		<content:encoded><![CDATA[<p>Hi Ashesh,</p>
<p>Have a look at this <a href="http://www.pascal-central.com/OOE-stds.html" rel="nofollow">document</a> describing Object-Oriented Pascal. Incidentally, <a href="http://dn.codegear.com/article/20803" rel="nofollow">Turbo Pascal 5.5</a>, which is downloadable freely, is also object-oriented.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Webdesign Bureau</title>
		<link>http://www.noulakaz.net/weblog/2008/11/10/turbo-pascal-1-0-is-25-years-old/#comment-163062</link>
		<dc:creator>Webdesign Bureau</dc:creator>
		<pubDate>Thu, 13 Nov 2008 15:40:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.noulakaz.net/weblog/?p=1053#comment-163062</guid>
		<description>Strange enough, I didn&#039;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: &quot;Wow, these guys must be freaking intelligent!&quot;. 

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 &quot;professer anglais tape bel casse&quot;. Some 10 years later I was studying Java2 and C in a French University.</description>
		<content:encoded><![CDATA[<p>Strange enough, I didn&#8217;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: &#8220;Wow, these guys must be freaking intelligent!&#8221;. </p>
<p>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 &#8220;professer anglais tape bel casse&#8221;. Some 10 years later I was studying Java2 and C in a French University.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ashesh</title>
		<link>http://www.noulakaz.net/weblog/2008/11/10/turbo-pascal-1-0-is-25-years-old/#comment-163050</link>
		<dc:creator>Ashesh</dc:creator>
		<pubDate>Thu, 13 Nov 2008 13:29:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.noulakaz.net/weblog/?p=1053#comment-163050</guid>
		<description>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</description>
		<content:encoded><![CDATA[<p>Cool, 25 years &#8211; pascal.</p>
<p>After Dbase III plus, I got the opportunity to have a greater interest in Programming by having fun with Pascal. </p>
<p>I really enjoyed this programming language. Very Structured, Disciplined way of doing things.</p>
<p>However, the mystery:<br />
Is Object Oriented Supported in Pascal?<br />
If so, could we have a code snippet that demonstrates the basic OOP concepts please?</p>
<p>Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: avinash</title>
		<link>http://www.noulakaz.net/weblog/2008/11/10/turbo-pascal-1-0-is-25-years-old/#comment-163015</link>
		<dc:creator>avinash</dc:creator>
		<pubDate>Thu, 13 Nov 2008 08:06:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.noulakaz.net/weblog/?p=1053#comment-163015</guid>
		<description>Hi Manzerkrane,

Thanks for the nice words. It&#039;s great to know that people like the way I blog. As a matter of fact, It&#039;s sometimes tough to be a blogger but oh so satisfying... thanks to people like you :-)</description>
		<content:encoded><![CDATA[<p>Hi Manzerkrane,</p>
<p>Thanks for the nice words. It&#8217;s great to know that people like the way I blog. As a matter of fact, It&#8217;s sometimes tough to be a blogger but oh so satisfying&#8230; thanks to people like you <img src='http://www.noulakaz.net/weblog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: manzerkrane</title>
		<link>http://www.noulakaz.net/weblog/2008/11/10/turbo-pascal-1-0-is-25-years-old/#comment-162972</link>
		<dc:creator>manzerkrane</dc:creator>
		<pubDate>Thu, 13 Nov 2008 01:51:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.noulakaz.net/weblog/?p=1053#comment-162972</guid>
		<description>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 &#039;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 !</description>
		<content:encoded><![CDATA[<p>Dear Avinash,<br />
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 &#8216;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.<br />
Good work !</p>
]]></content:encoded>
	</item>
</channel>
</rss>
