<?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"
	>
<channel>
	<title>Comments on: Forth interpreter and readline library in Ada</title>
	<atom:link href="http://www.rfc1149.net/blog/2006/05/30/forth-interpreter-and-readline-library-in-ada/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.rfc1149.net/blog/2006/05/30/forth-interpreter-and-readline-library-in-ada/</link>
	<description>Samuel Tardieu's dual-sided blog</description>
	<pubDate>Sat, 11 Oct 2008 09:38:16 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
		<item>
		<title>By: Luca Della Rocca</title>
		<link>http://www.rfc1149.net/blog/2006/05/30/forth-interpreter-and-readline-library-in-ada/#comment-54298</link>
		<dc:creator>Luca Della Rocca</dc:creator>
		<pubDate>Sun, 01 Jul 2007 15:15:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.rfc1149.net/blog/2006/05/30/forth-interpreter-and-readline-library-in-ada/#comment-54298</guid>
		<description>I used your utility packages for my final doctorate at university, thank you for all your work.</description>
		<content:encoded><![CDATA[<p>I used your utility packages for my final doctorate at university, thank you for all your work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Samuel Tardieu</title>
		<link>http://www.rfc1149.net/blog/2006/05/30/forth-interpreter-and-readline-library-in-ada/#comment-3503</link>
		<dc:creator>Samuel Tardieu</dc:creator>
		<pubDate>Wed, 31 May 2006 20:30:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.rfc1149.net/blog/2006/05/30/forth-interpreter-and-readline-library-in-ada/#comment-3503</guid>
		<description>Be careful, it is not complete at all and even lacks some basic words. I will add them as time permits, but this was not a priority, I only implemented what we needed to test our robot.

Alternatively, you may want to patch it and give me access to the patches so that I can integrate them :-)</description>
		<content:encoded><![CDATA[<p>Be careful, it is not complete at all and even lacks some basic words. I will add them as time permits, but this was not a priority, I only implemented what we needed to test our robot.</p>
<p>Alternatively, you may want to patch it and give me access to the patches so that I can integrate them <img src='http://www.rfc1149.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bruce Conroy</title>
		<link>http://www.rfc1149.net/blog/2006/05/30/forth-interpreter-and-readline-library-in-ada/#comment-3502</link>
		<dc:creator>Bruce Conroy</dc:creator>
		<pubDate>Wed, 31 May 2006 20:26:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.rfc1149.net/blog/2006/05/30/forth-interpreter-and-readline-library-in-ada/#comment-3502</guid>
		<description>I like it. I was a Forth guru back in the TRS-80 days, but I seem to have forgotten most of it.

In any case, I grabbed it from the web site, and it compiled on the second try. I'm going
to dust off my Forth books and see if I can make it do amything useful.

blc</description>
		<content:encoded><![CDATA[<p>I like it. I was a Forth guru back in the TRS-80 days, but I seem to have forgotten most of it.</p>
<p>In any case, I grabbed it from the web site, and it compiled on the second try. I&#8217;m going<br />
to dust off my Forth books and see if I can make it do amything useful.</p>
<p>blc</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Samuel Tardieu</title>
		<link>http://www.rfc1149.net/blog/2006/05/30/forth-interpreter-and-readline-library-in-ada/#comment-3448</link>
		<dc:creator>Samuel Tardieu</dc:creator>
		<pubDate>Tue, 30 May 2006 11:40:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.rfc1149.net/blog/2006/05/30/forth-interpreter-and-readline-library-in-ada/#comment-3448</guid>
		<description>What other kind of programmable interpreter would you use for interactive testing? Forth is such a beast. For example, we could interface with four words: move, turn, moving and ms (for milliseconds).

Testing a path with the robot was as simple as typing:

&lt;blockquote&gt;&lt;code&gt;: end-of-move begin moving while 50 ms repeat ;
: full-move move end-of-move ;
: full-turn turn end-of-move ;

: side 100 move 90 turn ;
: square side side side side ;

square
&lt;/code&gt;
&lt;/blockquote&gt;

The robot would then make a square of 100 millimeters by 100 millimeters, waiting for the completion of each move before launching the next one, and ensuring 50ms pauses between successive pollings of the moving status to ensure that other tasks can be scheduled as well.</description>
		<content:encoded><![CDATA[<p>What other kind of programmable interpreter would you use for interactive testing? Forth is such a beast. For example, we could interface with four words: move, turn, moving and ms (for milliseconds).</p>
<p>Testing a path with the robot was as simple as typing:</p>
<blockquote><p><code>: end-of-move begin moving while 50 ms repeat ;<br />
: full-move move end-of-move ;<br />
: full-turn turn end-of-move ;</p>
<p>: side 100 move 90 turn ;<br />
: square side side side side ;</p>
<p>square<br />
</code>
</p></blockquote>
<p>The robot would then make a square of 100 millimeters by 100 millimeters, waiting for the completion of each move before launching the next one, and ensuring 50ms pauses between successive pollings of the moving status to ensure that other tasks can be scheduled as well.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frédéric PRACA</title>
		<link>http://www.rfc1149.net/blog/2006/05/30/forth-interpreter-and-readline-library-in-ada/#comment-3447</link>
		<dc:creator>Frédéric PRACA</dc:creator>
		<pubDate>Tue, 30 May 2006 11:36:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.rfc1149.net/blog/2006/05/30/forth-interpreter-and-readline-library-in-ada/#comment-3447</guid>
		<description>Hello,
just a question : Why FORTH on a Linux robot ?

Fred</description>
		<content:encoded><![CDATA[<p>Hello,<br />
just a question : Why FORTH on a Linux robot ?</p>
<p>Fred</p>
]]></content:encoded>
	</item>
</channel>
</rss>
