<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>dlrbasic Wiki &amp; Documentation Rss Feed</title><link>http://www.codeplex.com/dlrbasic/Wiki/View.aspx?title=Home</link><description>dlrbasic Wiki Rss Description</description><item><title>Updated Wiki: Home</title><link>http://www.codeplex.com/dlrbasic/Wiki/View.aspx?title=Home&amp;version=7</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;The DLRBasic is an implementation of the BASIC language on the DLR (Dynamic Language Runtime). The DLRBasic is subset of the several flavors of the BASICs such as GW-, HP-, CP/M-, etc. The implementation tries to cover as many syntax constructions as possible, however may require some tweaking of the BASIC code. &lt;br /&gt; &lt;br /&gt;&lt;b&gt;Usage&lt;/b&gt;&lt;br /&gt;The DLRBasic console application can be used to run existing BASIC code/listings, or to compute the statements in the interactive mode. The solution includes sample/test application that demostrates how to extend legacy BASIC application by handling statements callbacks. See also &lt;a href="http://www.codeplex.com/dlrbasic/Wiki/View.aspx?title=samples&amp;amp;referringTitle=Home"&gt;samples&lt;/a&gt; page.&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Building the Source Code&lt;/b&gt;&lt;br /&gt;The DLR is a part of the &lt;a href="http://www.codeplex.com/IronPython/" class="externalLink"&gt;IronPython&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; project. You will be required to have DLR core assemblies to build the DLRBasic source code. &lt;br /&gt;
&lt;/div&gt;</description><author>notmasteryet</author><pubDate>Thu, 05 Feb 2009 05:27:52 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20090205052752A</guid></item><item><title>Updated Wiki: samples</title><link>http://www.codeplex.com/dlrbasic/Wiki/View.aspx?title=samples&amp;version=2</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;Command Line Statements&lt;/b&gt;&lt;br /&gt; &lt;br /&gt;&lt;pre&gt;
DLR Basic (1.0.0.0) on .NET 2.0.50727.1433
(Ctrl-Z + ENTER to quit, specify file in command line to execute)
OK
A$=&amp;quot;Hello&amp;quot;
OK
PRINT MID(A$,2,2)
el
OK
FOR I=1 TO 12 STEP 3:PRINT I;:NEXT:PRINT
 1  4  7  10
OK
IF 3=4 THEN ? &amp;quot;TRUE&amp;quot; ELSE ? &amp;quot;FALSE&amp;quot;
FALSE
OK
&lt;/pre&gt; &lt;br /&gt; &lt;br /&gt;&lt;b&gt;BASIC Program File Example&lt;/b&gt;&lt;br /&gt; &lt;br /&gt;&lt;i&gt;sqcalc.bas:&lt;/i&gt;&lt;br /&gt;&lt;pre&gt;
5 PRINT &amp;quot;SQUARE EQUATION CALCULATOR: A*X^2+B*X+C=0&amp;quot; 
10 INPUT &amp;quot;ENTER A,B,C&amp;quot;;A,B,C
20 D=B*B-4*A*C
30 IF D&amp;lt;0 THEN PRINT &amp;quot;NO SOLUTIONS&amp;quot;: GOTO 90
40 IF D&amp;gt;0 THEN 70
50 X=-B/(2*A): PRINT &amp;quot;ONE SOLUTION. X=&amp;quot;;X
60 GOTO 90
70 X1=(-B-SQR(D))/(2*A):X2=(-B+SQR(D))/(2*A)
80 PRINT &amp;quot;TWO SOLUTIONS. X1=&amp;quot;X1&amp;quot;, X2=&amp;quot;X2
90 END
&lt;/pre&gt; &lt;br /&gt;
&lt;/div&gt;</description><author>notmasteryet</author><pubDate>Tue, 11 Nov 2008 22:10:17 GMT</pubDate><guid isPermaLink="false">Updated Wiki: samples 20081111101017P</guid></item><item><title>Updated Wiki: samples</title><link>http://www.codeplex.com/dlrbasic/Wiki/View.aspx?title=samples&amp;version=1</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;Command line statements&lt;/b&gt;&lt;br /&gt;&lt;pre&gt;
DLR Basic (1.0.0.0) on .NET 2.0.50727.1433
(Ctrl-Z + ENTER to quit, specify file in command line to execute)
OK
A$=&amp;quot;Hello&amp;quot;
OK
PRINT MID(A$,2,2)
el
OK
FOR I=1 TO 12 STEP 3:PRINT I;:NEXT:PRINT
 1  4  7  10
OK
IF 3=4 THEN ? &amp;quot;TRUE&amp;quot; ELSE ? &amp;quot;FALSE&amp;quot;
FALSE
OK
&lt;/pre&gt; &lt;br /&gt;
&lt;/div&gt;</description><author>notmasteryet</author><pubDate>Tue, 11 Nov 2008 22:05:46 GMT</pubDate><guid isPermaLink="false">Updated Wiki: samples 20081111100546P</guid></item><item><title>Updated Wiki: Home</title><link>http://www.codeplex.com/dlrbasic/Wiki/View.aspx?title=Home&amp;version=6</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;The DLRBasic is an implementation of the BASIC language on the DLR (Dynamic Language Runtime). The DLRBasic is subset of the several flavors of the BASICs such as GW-, DEC-, CP/M-, etc. The implementation tries to cover as many syntax constructions as possible, however may require some tweaking of the BASIC code. &lt;br /&gt; &lt;br /&gt;&lt;b&gt;Usage&lt;/b&gt;&lt;br /&gt;The DLRBasic console application can be used to run existing BASIC code/listings, or to compute the statements in the interactive mode. The solution includes sample/test application that demostrates how to extend legacy BASIC application by handling statements callbacks. See also &lt;a href="http://www.codeplex.com/dlrbasic/Wiki/View.aspx?title=samples&amp;amp;referringTitle=Home"&gt;samples&lt;/a&gt; page.&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Building the Source Code&lt;/b&gt;&lt;br /&gt;The DLR is a part of the &lt;a href="http://www.codeplex.com/IronPython/" class="externalLink"&gt;IronPython&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; project. You will be required to have DLR core assemblies to build the DLRBasic source code. &lt;br /&gt;
&lt;/div&gt;</description><author>notmasteryet</author><pubDate>Tue, 11 Nov 2008 22:01:17 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20081111100117P</guid></item><item><title>Updated Wiki: Home</title><link>http://www.codeplex.com/dlrbasic/Wiki/View.aspx?title=Home&amp;version=5</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;The DLRBasic is an implementation of the BASIC language on the DLR (Dynamic Language Runtime). The DLRBasic is subset of the several flavors of the BASICs such as GW-, DEC-, CP/M-, etc. The implementation tries to cover as many syntax constructions as possible, however may require some tweaking of the BASIC code. &lt;br /&gt; &lt;br /&gt;&lt;b&gt;Usage&lt;/b&gt;&lt;br /&gt;The DLRBasic console application can be used to run existing BASIC code/listings, or to compute the statements in the interactive mode. The solution includes sample/test application that demostrates how to extend legacy BASIC application by handling statements callbacks.&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Building the Source Code&lt;/b&gt;&lt;br /&gt;The DLR is a part of the &lt;a href="http://www.codeplex.com/IronPython/" class="externalLink"&gt;IronPython&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; project. You will be required to have DLR core assemblies to build the DLRBasic source code.&lt;br /&gt;
&lt;/div&gt;</description><author>notmasteryet</author><pubDate>Sun, 09 Nov 2008 17:20:36 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20081109052036P</guid></item><item><title>Updated Wiki: Home</title><link>http://www.codeplex.com/dlrbasic/Wiki/View.aspx?title=Home&amp;version=4</link><description>&lt;div class="wikidoc"&gt;
&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;The DLRBasic is an implementation of the BASIC language on the DLR (Dynamic Language Runtime). The DLRBasic is subset of the several flavors of the BASICs such as GW-, DEC-, CP/M-, etc. The implementation tries to cover as many syntax constructions as possible, however may require some tweaking of the BASIC code. &lt;br /&gt; &lt;br /&gt;&lt;b&gt;Usage&lt;/b&gt;&lt;br /&gt;The DLRBasic console application can be used to run existing BASIC code/listings, or to compute the statements in the interactive mode. The solution includes sample/test application tht demostrate how to extend existing BASIC application by handling statements callbacks.&lt;br /&gt; &lt;br /&gt;&lt;b&gt;Building the Source Code&lt;/b&gt;&lt;br /&gt;The DLR is a part of the &lt;a href="http://www.codeplex.com/IronPython/" class="externalLink"&gt;IronPython&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; project. You will be required to have DLR core assemblies to build the DLRBasic source code.&lt;br /&gt;
&lt;/div&gt;</description><author>notmasteryet</author><pubDate>Sun, 09 Nov 2008 17:19:41 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20081109051941P</guid></item></channel></rss>