<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wikidot="http://www.wikidot.com/rss-namespace">

	<channel>
		<title>Beginner Programming with FreeBASIC Class</title>
		<link>http://gamedesign.wikidot.com/forum/t-9344/beginner-programming-with-freebasic-class</link>
		<description>Posts in the discussion thread &quot;Beginner Programming with FreeBASIC Class&quot; - Discussion about the current class.</description>
				<copyright></copyright>
		<lastBuildDate>Sat, 12 Sep 2026 14:36:10 +0000</lastBuildDate>
		
					<item>
				<guid>http://gamedesign.wikidot.com/forum/t-9344#post-26381</guid>
				<title>Re: Beginner Programming with FreeBASIC Class</title>
				<link>http://gamedesign.wikidot.com/forum/t-9344/beginner-programming-with-freebasic-class#post-26381</link>
				<description></description>
				<pubDate>Wed, 30 May 2007 18:47:54 +0000</pubDate>
				<wikidot:authorName>hartnell</wikidot:authorName>				<wikidot:authorUserId>10978</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Well, you know what they say : The best programmers are lazy ones. &#8212;hartnell</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://gamedesign.wikidot.com/forum/t-9344#post-26380</guid>
				<title>Re: Beginner Programming with FreeBASIC Class</title>
				<link>http://gamedesign.wikidot.com/forum/t-9344/beginner-programming-with-freebasic-class#post-26380</link>
				<description></description>
				<pubDate>Wed, 30 May 2007 18:45:12 +0000</pubDate>
				<wikidot:authorName>bacon333</wikidot:authorName>				<wikidot:authorUserId>18106</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Yeah, I know, I just couldn't be bothered (or was too busy, :) ) to make a new thread :D</p> <p>~bacon333</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://gamedesign.wikidot.com/forum/t-9344#post-26347</guid>
				<title>Re: Beginner Programming with FreeBASIC Class</title>
				<link>http://gamedesign.wikidot.com/forum/t-9344/beginner-programming-with-freebasic-class#post-26347</link>
				<description></description>
				<pubDate>Wed, 30 May 2007 16:39:35 +0000</pubDate>
				<wikidot:authorName>hartnell</wikidot:authorName>				<wikidot:authorUserId>10978</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>:) &#8212;hartnell</p> <p>PS. Did you notice the Beginner's class has been over for more than a week now.? :)</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://gamedesign.wikidot.com/forum/t-9344#post-26271</guid>
				<title>Re: Beginner Programming with FreeBASIC Class</title>
				<link>http://gamedesign.wikidot.com/forum/t-9344/beginner-programming-with-freebasic-class#post-26271</link>
				<description></description>
				<pubDate>Wed, 30 May 2007 10:58:23 +0000</pubDate>
				<wikidot:authorName>bacon333</wikidot:authorName>				<wikidot:authorUserId>18106</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I'm sorry I couldn't make Friday's class&#8230; I had gone out for dinner, and could not make it&#8230; however, Monday's class I was available, and Hartnell wasn't there&#8230; :(<br /> Anyway, I'm also sorry about missing Tuesday's class&#8230; I had a visitor over, and was not able to attend the class&#8230;<br /> Sorry guys.</p> <p>I'll try to attend tonights class :)</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://gamedesign.wikidot.com/forum/t-9344#post-25760</guid>
				<title>Re: Beginner Programming with FreeBASIC Class</title>
				<link>http://gamedesign.wikidot.com/forum/t-9344/beginner-programming-with-freebasic-class#post-25760</link>
				<description></description>
				<pubDate>Sat, 26 May 2007 22:06:30 +0000</pubDate>
				<wikidot:authorName>Gosha</wikidot:authorName>				<wikidot:authorUserId>19971</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>It doesn't fail for me. Also, you can type anything to the first questions .. since it will go to the next label anyway .. so you have to make something in style with</p> <div class="code"> <pre><code>QuestionOne: Print &quot; This is a question game. There are 3 questions. Type True (T) or False (F) to answer &quot; Input &quot; Question 1: Is the sky blue? &quot; , useranswer If lcase(useranswer) = &quot;y&quot; Then Goto QuestionTwo If lcase(useranswer) = &quot;n&quot; Then Goto GameOver Else goto QuestionOne</code></pre></div> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://gamedesign.wikidot.com/forum/t-9344#post-22880</guid>
				<title>Re: Beginner Programming with FreeBASIC Class</title>
				<link>http://gamedesign.wikidot.com/forum/t-9344/beginner-programming-with-freebasic-class#post-22880</link>
				<description></description>
				<pubDate>Fri, 11 May 2007 22:38:27 +0000</pubDate>
				<wikidot:authorName>bacon333</wikidot:authorName>				<wikidot:authorUserId>18106</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Well, I'm half an hour late&#8230; I completely forgot about the homework until 40 minutes ago when I saw your post, and freaked out. Then I made this small question game, however, one thing doesn't seem right. I had to use a label to end the game&#8230; is there a better way to do this?</p> <div class="code"> <pre><code>Dim answer As String Dim useranswer As String Dim tryagain As Integer Screen 19 NewGame: Gosub QuestionOne gameOver = 0 QuestionOne: Print &quot; This is a question game. There are 3 questions. Type True (T) or False (F) to answer &quot; Input &quot; Question 1: Is the sky blue? &quot; , useranswer If lcase(useranswer) = &quot;y&quot; Then Goto QuestionTwo If lcase(useranswer) = &quot;n&quot; Then Goto GameOver QuestionTwo: Input &quot; Question 2: Programming is awesome. &quot; , useranswer If lcase(useranswer) = &quot;y&quot; Then Goto QuestionThree If lcase(useranswer) = &quot;n&quot; Then Goto GameOver QuestionThree: Input &quot; Question 3: bacon smells. &quot; , useranswer If lcase(useranswer) = &quot;y&quot; then Goto GameOver If lcase(useranswer) = &quot;n&quot; Then Input &quot;Congrats, you have just won. Would you like to play again? (y/n)&quot; , useranswer If lcase(useranswer) = &quot;y&quot; Then Goto NewGame End If Goto Endgame GameOver: Input &quot; You failed. Would you like to try again? (y/n) &quot; , useranswer If lcase(useranswer) = &quot;y&quot; then Goto NewGame Endgame:</code></pre></div> <p>EDIT: For some reason, the compile fails&#8230; :(</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://gamedesign.wikidot.com/forum/t-9344#post-22863</guid>
				<title>Re: Beginner Programming with FreeBASIC Class</title>
				<link>http://gamedesign.wikidot.com/forum/t-9344/beginner-programming-with-freebasic-class#post-22863</link>
				<description></description>
				<pubDate>Fri, 11 May 2007 19:42:50 +0000</pubDate>
				<wikidot:authorName>hartnell</wikidot:authorName>				<wikidot:authorUserId>10978</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Please post your homework here, preferably an hour before class if you are capable. Put your code between the code tags :</p> <p><span style="white-space: pre-wrap;">[[code]]</span><br /> some code<br /> <span style="white-space: pre-wrap;">[[/code]]</span></p> <p>This will look like :</p> <div class="code"> <pre><code>some code</code></pre></div> <p>&#8212;hartnell</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://gamedesign.wikidot.com/forum/t-9344#post-22652</guid>
				<title>Re: Beginner Programming with FreeBASIC Class</title>
				<link>http://gamedesign.wikidot.com/forum/t-9344/beginner-programming-with-freebasic-class#post-22652</link>
				<description></description>
				<pubDate>Thu, 10 May 2007 22:38:29 +0000</pubDate>
				<wikidot:authorName>bacon333</wikidot:authorName>				<wikidot:authorUserId>18106</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I'll be there :D</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://gamedesign.wikidot.com/forum/t-9344#post-22630</guid>
				<title>Re: Beginner Programming with FreeBASIC Class</title>
				<link>http://gamedesign.wikidot.com/forum/t-9344/beginner-programming-with-freebasic-class#post-22630</link>
				<description></description>
				<pubDate>Thu, 10 May 2007 20:58:12 +0000</pubDate>
				<wikidot:authorName>hartnell</wikidot:authorName>				<wikidot:authorUserId>10978</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Ok, we'll be having class tonight. :) &#8212;hartnell</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://gamedesign.wikidot.com/forum/t-9344#post-22629</guid>
				<title>Re: Beginner Programming with FreeBASIC Class</title>
				<link>http://gamedesign.wikidot.com/forum/t-9344/beginner-programming-with-freebasic-class#post-22629</link>
				<description></description>
				<pubDate>Thu, 10 May 2007 20:56:25 +0000</pubDate>
				<wikidot:authorName>Anonymous</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>ill be coming back again.<br /> -james</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://gamedesign.wikidot.com/forum/t-9344#post-22597</guid>
				<title>Beginner Programming with FreeBASIC Class</title>
				<link>http://gamedesign.wikidot.com/forum/t-9344/beginner-programming-with-freebasic-class#post-22597</link>
				<description></description>
				<pubDate>Thu, 10 May 2007 18:40:02 +0000</pubDate>
				<wikidot:authorName>hartnell</wikidot:authorName>				<wikidot:authorUserId>10978</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Since the Beginner Programming with FreeBASIC is on-going, I created this thread to exclude the date. Anyone showing up tonight?</p> <p>For those interested in joining the class, you are interested to sit in, however, we recommend joining the class when it begins again with a new set of students.</p> <p>&#8212;hartnell</p> 
				 	]]>
				</content:encoded>							</item>
				</channel>
</rss>