<?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/"
		xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
	>
<channel>
	<title>Comments on: Feeling the Nostalgia &#8211; Commodore64</title>
	<atom:link href="http://typicalmacuser.com/wordpress/2007/12/10/feeling-the-nostalgia-commodore64/feed/" rel="self" type="application/rss+xml" />
	<link>http://typicalmacuser.com/wordpress/2007/12/10/feeling-the-nostalgia-commodore64/</link>
	<description>Help for the Switcher and New Apple Macintosh User</description>
	<lastBuildDate>Mon, 23 Jan 2012 18:31:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<item>
		<title>By: George Starcher</title>
		<link>http://typicalmacuser.com/wordpress/2007/12/10/feeling-the-nostalgia-commodore64/comment-page-1/#comment-12591</link>
		<dc:creator>George Starcher</dc:creator>
		<pubDate>Wed, 12 Dec 2007 01:08:32 +0000</pubDate>
		<guid isPermaLink="false">http://typicalmacuser.com/wordpress/2007/12/10/feeling-the-nostalgia-commodore64/#comment-12591</guid>
		<description>Heheh  Yeah I had an Amiga 1000 too.  
Steve, don&#039;t forget the semi-colon at the end of line 10.  You want it to fill the screen not just print in a column.</description>
		<content:encoded><![CDATA[<p>Heheh  Yeah I had an Amiga 1000 too.<br />
Steve, don&#8217;t forget the semi-colon at the end of line 10.  You want it to fill the screen not just print in a column.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://typicalmacuser.com/wordpress/2007/12/10/feeling-the-nostalgia-commodore64/comment-page-1/#comment-12588</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Tue, 11 Dec 2007 14:31:47 +0000</pubDate>
		<guid isPermaLink="false">http://typicalmacuser.com/wordpress/2007/12/10/feeling-the-nostalgia-commodore64/#comment-12588</guid>
		<description>My favorite Basic app:

10 print &quot;Steve is cool&quot;
20 goto 10

I used to go in to computer stores and run this.  :-)</description>
		<content:encoded><![CDATA[<p>My favorite Basic app:</p>
<p>10 print &#8220;Steve is cool&#8221;<br />
20 goto 10</p>
<p>I used to go in to computer stores and run this.  <img src='http://typicalmacuser.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rene</title>
		<link>http://typicalmacuser.com/wordpress/2007/12/10/feeling-the-nostalgia-commodore64/comment-page-1/#comment-12583</link>
		<dc:creator>Rene</dc:creator>
		<pubDate>Tue, 11 Dec 2007 11:25:14 +0000</pubDate>
		<guid isPermaLink="false">http://typicalmacuser.com/wordpress/2007/12/10/feeling-the-nostalgia-commodore64/#comment-12583</guid>
		<description>Oops, line 40 should be:
40 k$ = str$(k/abs(a))</description>
		<content:encoded><![CDATA[<p>Oops, line 40 should be:<br />
40 k$ = str$(k/abs(a))</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rene</title>
		<link>http://typicalmacuser.com/wordpress/2007/12/10/feeling-the-nostalgia-commodore64/comment-page-1/#comment-12582</link>
		<dc:creator>Rene</dc:creator>
		<pubDate>Tue, 11 Dec 2007 11:22:56 +0000</pubDate>
		<guid isPermaLink="false">http://typicalmacuser.com/wordpress/2007/12/10/feeling-the-nostalgia-commodore64/#comment-12582</guid>
		<description>I started with an Apple ][ on the university, but my first own computer was a Commodore 64. So, that is nostalgia for me as well.

10 input &quot;fraction n,k&quot;;n,k
20 gosub 100
30 n$ = str$(n/abs(a))
40 k$ = str$(n/abs(a))
50 print &quot;proper fraction:&quot; + n$ + &quot;/&quot; + k$
60 end
100 rem greatest common denominator
110 a = n: b = k
120 if b = 0 then return
130 t = b
140 b = a - b*int(a/b)
150 a = t
160 goto 120

Type in this program and run it.

Enter 12,9 and see &quot;proper fraction: 4/ 3&quot; as the result.</description>
		<content:encoded><![CDATA[<p>I started with an Apple ][ on the university, but my first own computer was a Commodore 64. So, that is nostalgia for me as well.</p>
<p>10 input &#8220;fraction n,k&#8221;;n,k<br />
20 gosub 100<br />
30 n$ = str$(n/abs(a))<br />
40 k$ = str$(n/abs(a))<br />
50 print &#8220;proper fraction:&#8221; + n$ + &#8220;/&#8221; + k$<br />
60 end<br />
100 rem greatest common denominator<br />
110 a = n: b = k<br />
120 if b = 0 then return<br />
130 t = b<br />
140 b = a &#8211; b*int(a/b)<br />
150 a = t<br />
160 goto 120</p>
<p>Type in this program and run it.</p>
<p>Enter 12,9 and see &#8220;proper fraction: 4/ 3&#8243; as the result.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Administrator</title>
		<link>http://typicalmacuser.com/wordpress/2007/12/10/feeling-the-nostalgia-commodore64/comment-page-1/#comment-12581</link>
		<dc:creator>Administrator</dc:creator>
		<pubDate>Tue, 11 Dec 2007 06:33:46 +0000</pubDate>
		<guid isPermaLink="false">http://typicalmacuser.com/wordpress/2007/12/10/feeling-the-nostalgia-commodore64/#comment-12581</guid>
		<description>Very cool George, I will have to try that. Like you I had both the Vic20 and the C64. Then Amigas. I started on a Trash 80 however.</description>
		<content:encoded><![CDATA[<p>Very cool George, I will have to try that. Like you I had both the Vic20 and the C64. Then Amigas. I started on a Trash 80 however.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

