<?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: Beginning Factor &#8211; Shufflers &amp; Combinators</title>
	<atom:link href="http://elasticdog.com/2008/12/beginning-factor-shufflers-and-combinators/feed/" rel="self" type="application/rss+xml" />
	<link>http://elasticdog.com/2008/12/beginning-factor-shufflers-and-combinators/</link>
	<description>Imagine Something Clever</description>
	<lastBuildDate>Wed, 21 Jul 2010 14:40:23 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Screwtape</title>
		<link>http://elasticdog.com/2008/12/beginning-factor-shufflers-and-combinators/comment-page-1/#comment-60200</link>
		<dc:creator>Screwtape</dc:creator>
		<pubDate>Sat, 10 Jan 2009 07:52:44 +0000</pubDate>
		<guid isPermaLink="false">http://elasticdog.com/?p=160#comment-60200</guid>
		<description>I also have just added this site to my RSS reader in the hope of new articles appearing shortly. :)

Something I just stumbled over that I found incredibly helpful: if you type some code into the listener then hit Control-W, a debugging window will appear that shows you the data stack, the reserve stack and the call stack, and allows you to step through the execution of the code you entered. Awesome for finding out how things work. :)</description>
		<content:encoded><![CDATA[<p>I also have just added this site to my RSS reader in the hope of new articles appearing shortly. <img src='http://elasticdog.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Something I just stumbled over that I found incredibly helpful: if you type some code into the listener then hit Control-W, a debugging window will appear that shows you the data stack, the reserve stack and the call stack, and allows you to step through the execution of the code you entered. Awesome for finding out how things work. <img src='http://elasticdog.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joel</title>
		<link>http://elasticdog.com/2008/12/beginning-factor-shufflers-and-combinators/comment-page-1/#comment-60143</link>
		<dc:creator>Joel</dc:creator>
		<pubDate>Fri, 09 Jan 2009 03:35:41 +0000</pubDate>
		<guid isPermaLink="false">http://elasticdog.com/?p=160#comment-60143</guid>
		<description>RSS&#039;ed, and eagerly awaiting the next installment. For someone who has had no previous experience with stack-based language, your explanations are quite informative.</description>
		<content:encoded><![CDATA[<p>RSS&#8217;ed, and eagerly awaiting the next installment. For someone who has had no previous experience with stack-based language, your explanations are quite informative.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Xabi</title>
		<link>http://elasticdog.com/2008/12/beginning-factor-shufflers-and-combinators/comment-page-1/#comment-60054</link>
		<dc:creator>Xabi</dc:creator>
		<pubDate>Wed, 07 Jan 2009 10:52:00 +0000</pubDate>
		<guid isPermaLink="false">http://elasticdog.com/?p=160#comment-60054</guid>
		<description>an other tutorial!!!! an other tutorial!!! please! :)</description>
		<content:encoded><![CDATA[<p>an other tutorial!!!! an other tutorial!!! please! <img src='http://elasticdog.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cadar</title>
		<link>http://elasticdog.com/2008/12/beginning-factor-shufflers-and-combinators/comment-page-1/#comment-58570</link>
		<dc:creator>cadar</dc:creator>
		<pubDate>Mon, 08 Dec 2008 23:36:09 +0000</pubDate>
		<guid isPermaLink="false">http://elasticdog.com/?p=160#comment-58570</guid>
		<description>Thanks. This was educational.</description>
		<content:encoded><![CDATA[<p>Thanks. This was educational.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aaron Schaefer</title>
		<link>http://elasticdog.com/2008/12/beginning-factor-shufflers-and-combinators/comment-page-1/#comment-58493</link>
		<dc:creator>Aaron Schaefer</dc:creator>
		<pubDate>Sun, 07 Dec 2008 20:25:31 +0000</pubDate>
		<guid isPermaLink="false">http://elasticdog.com/?p=160#comment-58493</guid>
		<description>&lt;blockquote&gt;&quot;Can integers be entered in hexadecimal or octal form (as literals)?&quot; &lt;br /&gt;-- Jon&lt;/blockquote&gt;
Yep...you can enter and print numbers as bin, hex, and oct...they will always be stored on the stack in decimal form, but they can be taken out however you like:

&lt;pre&gt;&lt;code&gt;(scratchpad) &lt;strong&gt;BIN: 101010&lt;/strong&gt;

--- Data Stack:
42
(scratchpad) &lt;strong&gt;.b&lt;/strong&gt;
101010
(scratchpad) &lt;strong&gt;HEX: 2a&lt;strong&gt;

--- Data Stack:
42
(scratchpad) &lt;strong&gt;.h&lt;/strong&gt;
2a
(scratchpad) &lt;strong&gt;OCT: 52&lt;strong&gt;

--- Data Stack:
42
(scratchpad) &lt;strong&gt;.o&lt;/strong&gt;
52
&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;

You can also create them from a string with &lt;code&gt;bin&gt;&lt;/code&gt;, &lt;code&gt;hex&gt;&lt;/code&gt;, and &lt;code&gt;oct&gt;&lt;/code&gt;. See &quot;Convert between numbers and strings&quot; by doing &lt;code&gt;&quot;number-strings&quot; help&lt;/code&gt; in the listener.</description>
		<content:encoded><![CDATA[<blockquote><p>&#8220;Can integers be entered in hexadecimal or octal form (as literals)?&#8221; <br />&#8211; Jon</p></blockquote>
<p>Yep&#8230;you can enter and print numbers as bin, hex, and oct&#8230;they will always be stored on the stack in decimal form, but they can be taken out however you like:</p>
<pre><code>(scratchpad) <strong>BIN: 101010</strong>

--- Data Stack:
42
(scratchpad) <strong>.b</strong>
101010
(scratchpad) <strong>HEX: 2a</strong><strong>

--- Data Stack:
42
(scratchpad) </strong><strong>.h</strong>
2a
(scratchpad) <strong>OCT: 52</strong><strong>

--- Data Stack:
42
(scratchpad) </strong><strong>.o</strong>
52
</code></pre>
<p></p>
<p>You can also create them from a string with <code>bin></code>, <code>hex></code>, and <code>oct></code>. See &#8220;Convert between numbers and strings&#8221; by doing <code>"number-strings" help</code> in the listener.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
