<?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/">
	<channel>
		<title><![CDATA[Small Basic Forum - All Forums]]></title>
		<link>https://litdev.uk/mybb/</link>
		<description><![CDATA[Small Basic Forum - https://litdev.uk/mybb]]></description>
		<pubDate>Sun, 19 Apr 2026 06:07:35 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[D'ont read a file]]></title>
			<link>https://litdev.uk/mybb/showthread.php?tid=585</link>
			<pubDate>Sun, 12 Apr 2026 09:11:07 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://litdev.uk/mybb/member.php?action=profile&uid=38">francesco</a>]]></dc:creator>
			<guid isPermaLink="false">https://litdev.uk/mybb/showthread.php?tid=585</guid>
			<description><![CDATA[In the following code there is a problem, it does not read the file for me.<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>Sub frasi_puoi_passare<br />
max1a = 0<br />
min1a = 1<br />
numero_estratto1a = 0<br />
' Chiedi il percorso del file<br />
filePath1a = Program.Directory +  "/testidescrittivi/fileyes1.txt"<br />
  ' Legge tutto il contenuto del file<br />
  contenuto1a = File.ReadContents(filePath1a)<br />
  <br />
for i1a=1 to 999 ' ' if there are not more then 999 lines in the file<br />
contenuto1a[i1a]=File.ReadLine(filepath1a,i1a)<br />
if contenuto1a[i1a]="" then<br />
i1a=1000<br />
else<br />
lunghezza1a=i1a <br />
endif<br />
endfor <br />
  <br />
  <br />
  GraphicsWindow.ShowMessage(contenuto1a,"Contenuto") <br />
  <br />
' Calcoliamo la lunghezza della lista<br />
'lunghezza = Array.GetItemCount(contenuto) ' mi da' lunghezza = 0 ERRORE<br />
GraphicsWindow.ShowMessage(lunghezza1a,"LUNGHEZZA")<br />
numeroCasuale1a = Math.GetRandomNumber(lunghezza1a - min1a) + (min1a - 1)<br />
' Generiamo un indice casuale tra 1 e lunghezza<br />
' Estraiamo l'elemento corrispondente<br />
elementoCasuale1a = contenuto1a[numerocasuale1a]<br />
' Mostriamo il risultato<br />
GraphicsWindow.ShowMessage("Elemento estratto: " + elementoCasuale1a, "elemento") <br />
EndSub <br />
<br />
<br />
file:<br />
<br />
Puoi passare,<br />
Vai avanti,<br />
Prosegui,<br />
Non ti fermare</code></div></div>]]></description>
			<content:encoded><![CDATA[In the following code there is a problem, it does not read the file for me.<br />
<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>Sub frasi_puoi_passare<br />
max1a = 0<br />
min1a = 1<br />
numero_estratto1a = 0<br />
' Chiedi il percorso del file<br />
filePath1a = Program.Directory +  "/testidescrittivi/fileyes1.txt"<br />
  ' Legge tutto il contenuto del file<br />
  contenuto1a = File.ReadContents(filePath1a)<br />
  <br />
for i1a=1 to 999 ' ' if there are not more then 999 lines in the file<br />
contenuto1a[i1a]=File.ReadLine(filepath1a,i1a)<br />
if contenuto1a[i1a]="" then<br />
i1a=1000<br />
else<br />
lunghezza1a=i1a <br />
endif<br />
endfor <br />
  <br />
  <br />
  GraphicsWindow.ShowMessage(contenuto1a,"Contenuto") <br />
  <br />
' Calcoliamo la lunghezza della lista<br />
'lunghezza = Array.GetItemCount(contenuto) ' mi da' lunghezza = 0 ERRORE<br />
GraphicsWindow.ShowMessage(lunghezza1a,"LUNGHEZZA")<br />
numeroCasuale1a = Math.GetRandomNumber(lunghezza1a - min1a) + (min1a - 1)<br />
' Generiamo un indice casuale tra 1 e lunghezza<br />
' Estraiamo l'elemento corrispondente<br />
elementoCasuale1a = contenuto1a[numerocasuale1a]<br />
' Mostriamo il risultato<br />
GraphicsWindow.ShowMessage("Elemento estratto: " + elementoCasuale1a, "elemento") <br />
EndSub <br />
<br />
<br />
file:<br />
<br />
Puoi passare,<br />
Vai avanti,<br />
Prosegui,<br />
Non ti fermare</code></div></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[close a file]]></title>
			<link>https://litdev.uk/mybb/showthread.php?tid=583</link>
			<pubDate>Tue, 07 Apr 2026 22:01:47 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://litdev.uk/mybb/member.php?action=profile&uid=38">francesco</a>]]></dc:creator>
			<guid isPermaLink="false">https://litdev.uk/mybb/showthread.php?tid=583</guid>
			<description><![CDATA[closing a txt file in small basic, I found a link that said it wasn't necessary, but instead if I try to run the program 2 times it gives me an error, because the file is already in use by another task]]></description>
			<content:encoded><![CDATA[closing a txt file in small basic, I found a link that said it wasn't necessary, but instead if I try to run the program 2 times it gives me an error, because the file is already in use by another task]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[random in a array]]></title>
			<link>https://litdev.uk/mybb/showthread.php?tid=580</link>
			<pubDate>Fri, 27 Mar 2026 19:02:42 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://litdev.uk/mybb/member.php?action=profile&uid=38">francesco</a>]]></dc:creator>
			<guid isPermaLink="false">https://litdev.uk/mybb/showthread.php?tid=580</guid>
			<description><![CDATA[the line of code <br />
<br />
lunghezza = Array.GetItemCount(contenuto) ' mi da' lunghezza = 0 ERRORE<br />
<br />
give me a lunghezza equal zero = 0]]></description>
			<content:encoded><![CDATA[the line of code <br />
<br />
lunghezza = Array.GetItemCount(contenuto) ' mi da' lunghezza = 0 ERRORE<br />
<br />
give me a lunghezza equal zero = 0]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Sqlite Version]]></title>
			<link>https://litdev.uk/mybb/showthread.php?tid=579</link>
			<pubDate>Mon, 23 Mar 2026 19:22:34 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://litdev.uk/mybb/member.php?action=profile&uid=8">Lester</a>]]></dc:creator>
			<guid isPermaLink="false">https://litdev.uk/mybb/showthread.php?tid=579</guid>
			<description><![CDATA[LitDev, What version of SQLite is in LDDataBase Library?  Thanks, Lester]]></description>
			<content:encoded><![CDATA[LitDev, What version of SQLite is in LDDataBase Library?  Thanks, Lester]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Small Basic Explorer with LitDev extentions]]></title>
			<link>https://litdev.uk/mybb/showthread.php?tid=577</link>
			<pubDate>Tue, 17 Mar 2026 15:48:41 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://litdev.uk/mybb/member.php?action=profile&uid=41">martmen</a>]]></dc:creator>
			<guid isPermaLink="false">https://litdev.uk/mybb/showthread.php?tid=577</guid>
			<description><![CDATA[Hello Small Basic friends,<br />
<br />
here is a challenge for you. Extend the Mini Explorer KBQG606.000 with additional functionalities or speed up the program’s execution.<br />
<br />
I’m excited to see what kind of Small Basic Explorer you will create.<br />
<br />
Good luck with your programming!<br />
martmen<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://litdev.uk/mybb/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=197" target="_blank" title="">Small Basic Explorer.jpg</a> (Size: 223.8 KB / Downloads: 5)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[Hello Small Basic friends,<br />
<br />
here is a challenge for you. Extend the Mini Explorer KBQG606.000 with additional functionalities or speed up the program’s execution.<br />
<br />
I’m excited to see what kind of Small Basic Explorer you will create.<br />
<br />
Good luck with your programming!<br />
martmen<br /><!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://litdev.uk/mybb/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=197" target="_blank" title="">Small Basic Explorer.jpg</a> (Size: 223.8 KB / Downloads: 5)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Example Program]]></title>
			<link>https://litdev.uk/mybb/showthread.php?tid=576</link>
			<pubDate>Fri, 13 Mar 2026 16:15:51 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://litdev.uk/mybb/member.php?action=profile&uid=41">martmen</a>]]></dc:creator>
			<guid isPermaLink="false">https://litdev.uk/mybb/showthread.php?tid=576</guid>
			<description><![CDATA[Hello everyone,<br />
<br />
you can also program in Small Basic like this.<br />
Take a look at the program <span style="font-weight: bold;" class="mycode_b">KLLX711.000</span>.<br />
<br />
Best regards,<br />
Martin<br />
<br />
Hello everyone,<br />
<br />
you can also program in Small Basic like this.<br />
Take a look at the program KLLX711.000.<br />
<br />
Best regards,<br />
Martin]]></description>
			<content:encoded><![CDATA[Hello everyone,<br />
<br />
you can also program in Small Basic like this.<br />
Take a look at the program <span style="font-weight: bold;" class="mycode_b">KLLX711.000</span>.<br />
<br />
Best regards,<br />
Martin<br />
<br />
Hello everyone,<br />
<br />
you can also program in Small Basic like this.<br />
Take a look at the program KLLX711.000.<br />
<br />
Best regards,<br />
Martin]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[BASIC Jam 7 is in progress & info of old Jams.]]></title>
			<link>https://litdev.uk/mybb/showthread.php?tid=575</link>
			<pubDate>Tue, 10 Mar 2026 02:40:53 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://litdev.uk/mybb/member.php?action=profile&uid=11">eddylo</a>]]></dc:creator>
			<guid isPermaLink="false">https://litdev.uk/mybb/showthread.php?tid=575</guid>
			<description><![CDATA[Maybe no forum member has time to participate in this jam:<br />
<a href="https://itch.io/jam/jam-for-all-basic-dialects-7" target="_blank" rel="noopener" class="mycode_url">https://itch.io/jam/jam-for-all-basic-dialects-7</a><br />
<br />
By the way, this information is interesting:<br />
<a href="https://itch.io/jam/jam-for-all-basic-dialects-7/topic/5834450/6-previous-basic-jams-information-basic-dialectsno-of-time-used-in-each-basic-jam" target="_blank" rel="noopener" class="mycode_url">https://itch.io/jam/jam-for-all-basic-di...-basic-jam</a>]]></description>
			<content:encoded><![CDATA[Maybe no forum member has time to participate in this jam:<br />
<a href="https://itch.io/jam/jam-for-all-basic-dialects-7" target="_blank" rel="noopener" class="mycode_url">https://itch.io/jam/jam-for-all-basic-dialects-7</a><br />
<br />
By the way, this information is interesting:<br />
<a href="https://itch.io/jam/jam-for-all-basic-dialects-7/topic/5834450/6-previous-basic-jams-information-basic-dialectsno-of-time-used-in-each-basic-jam" target="_blank" rel="noopener" class="mycode_url">https://itch.io/jam/jam-for-all-basic-di...-basic-jam</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[LitDev extension]]></title>
			<link>https://litdev.uk/mybb/showthread.php?tid=568</link>
			<pubDate>Fri, 20 Feb 2026 09:12:08 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://litdev.uk/mybb/member.php?action=profile&uid=41">martmen</a>]]></dc:creator>
			<guid isPermaLink="false">https://litdev.uk/mybb/showthread.php?tid=568</guid>
			<description><![CDATA[Hello LitDev,<br />
<br />
I hope you are doing well. Several corrections for your extension have already been submitted.<br />
May I kindly ask when a new version of the extensions might be available?<br />
<br />
Best Regards<br />
Martin]]></description>
			<content:encoded><![CDATA[Hello LitDev,<br />
<br />
I hope you are doing well. Several corrections for your extension have already been submitted.<br />
May I kindly ask when a new version of the extensions might be available?<br />
<br />
Best Regards<br />
Martin]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Button with icons]]></title>
			<link>https://litdev.uk/mybb/showthread.php?tid=565</link>
			<pubDate>Sun, 08 Feb 2026 11:07:35 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://litdev.uk/mybb/member.php?action=profile&uid=41">martmen</a>]]></dc:creator>
			<guid isPermaLink="false">https://litdev.uk/mybb/showthread.php?tid=565</guid>
			<description><![CDATA[Hello LitDev, <br />
<br />
is it possible with the LitDev extension to display buttons with icons instead of text? It would be great to be able to use both the standard Windows icons and custom icons.<br />
I want to build my DRAWING program using icons.<br />
<br />
 Many thanks<br />
martmen]]></description>
			<content:encoded><![CDATA[Hello LitDev, <br />
<br />
is it possible with the LitDev extension to display buttons with icons instead of text? It would be great to be able to use both the standard Windows icons and custom icons.<br />
I want to build my DRAWING program using icons.<br />
<br />
 Many thanks<br />
martmen]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Drawing]]></title>
			<link>https://litdev.uk/mybb/showthread.php?tid=558</link>
			<pubDate>Thu, 29 Jan 2026 10:06:31 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://litdev.uk/mybb/member.php?action=profile&uid=41">martmen</a>]]></dc:creator>
			<guid isPermaLink="false">https://litdev.uk/mybb/showthread.php?tid=558</guid>
			<description><![CDATA[Version 1.0<br />
Description:<br />
 This program provides an interactive drawing surface where<br />
 the user can draw various shapes (circle, ellipse, square,<br />
 rectangle, triangles, polygon, star), move, rotate, zoom,<br />
 fill them with colors, clear, print, save and load drawings.<br />
 It uses Small Basic plus the LitDev extension.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Show XRKM481.000</span><br />
<hr class="mycode_hr" />
Sample:<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://litdev.uk/mybb/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=187" target="_blank" title="">Drawing - Kopie (2).jpg</a> (Size: 63.79 KB / Downloads: 1)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[Version 1.0<br />
Description:<br />
 This program provides an interactive drawing surface where<br />
 the user can draw various shapes (circle, ellipse, square,<br />
 rectangle, triangles, polygon, star), move, rotate, zoom,<br />
 fill them with colors, clear, print, save and load drawings.<br />
 It uses Small Basic plus the LitDev extension.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">Show XRKM481.000</span><br />
<hr class="mycode_hr" />
Sample:<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://litdev.uk/mybb/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=187" target="_blank" title="">Drawing - Kopie (2).jpg</a> (Size: 63.79 KB / Downloads: 1)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Draw sample]]></title>
			<link>https://litdev.uk/mybb/showthread.php?tid=557</link>
			<pubDate>Sun, 25 Jan 2026 21:39:17 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://litdev.uk/mybb/member.php?action=profile&uid=41">martmen</a>]]></dc:creator>
			<guid isPermaLink="false">https://litdev.uk/mybb/showthread.php?tid=557</guid>
			<description><![CDATA[Hello everyone,<br />
Here is a small drawing program using commands from the LitDev extension. Import TPJB64.000.<br />
<br />
I'm still missing two subroutines:<br />
Sub MoveObjektWithMouse<br />
Sub RotateObjectWitheMouse<br />
<br />
It could also be extended with additional objects.<br />
Anyone who’s interested is welcome to take this as a challenge and share their own version here.<br />
<br />
Best regards<br />
MartMen<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://litdev.uk/mybb/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=185" target="_blank" title="">Draw.jpg</a> (Size: 107.68 KB / Downloads: 3)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[Hello everyone,<br />
Here is a small drawing program using commands from the LitDev extension. Import TPJB64.000.<br />
<br />
I'm still missing two subroutines:<br />
Sub MoveObjektWithMouse<br />
Sub RotateObjectWitheMouse<br />
<br />
It could also be extended with additional objects.<br />
Anyone who’s interested is welcome to take this as a challenge and share their own version here.<br />
<br />
Best regards<br />
MartMen<br />
<!-- start: postbit_attachments_attachment -->
<br /><!-- start: attachment_icon -->
<img src="https://litdev.uk/mybb/images/attachtypes/image.png" title="JPG Image" border="0" alt=".jpg" />
<!-- end: attachment_icon -->&nbsp;&nbsp;<a href="attachment.php?aid=185" target="_blank" title="">Draw.jpg</a> (Size: 107.68 KB / Downloads: 3)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[ZScript]]></title>
			<link>https://litdev.uk/mybb/showthread.php?tid=556</link>
			<pubDate>Thu, 22 Jan 2026 03:31:07 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://litdev.uk/mybb/member.php?action=profile&uid=13">z-s</a>]]></dc:creator>
			<guid isPermaLink="false">https://litdev.uk/mybb/showthread.php?tid=556</guid>
			<description><![CDATA[Hi everyone i started programming with sb but today made a new language.<br />
ZScript is a typesafe with new keywords which transpile to JS and can be run in build itself.<br />
I just have a windows PC and a linux server to test it ut need someone for testing on cross platform os.<br />
<a href="https://github.com/zscriptlang/zscript" target="_blank" rel="noopener" class="mycode_url">https://github.com/zscriptlang/zscript</a>]]></description>
			<content:encoded><![CDATA[Hi everyone i started programming with sb but today made a new language.<br />
ZScript is a typesafe with new keywords which transpile to JS and can be run in build itself.<br />
I just have a windows PC and a linux server to test it ut need someone for testing on cross platform os.<br />
<a href="https://github.com/zscriptlang/zscript" target="_blank" rel="noopener" class="mycode_url">https://github.com/zscriptlang/zscript</a>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[I think that no more SmallBasic Open Edition]]></title>
			<link>https://litdev.uk/mybb/showthread.php?tid=555</link>
			<pubDate>Tue, 20 Jan 2026 23:02:17 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://litdev.uk/mybb/member.php?action=profile&uid=11">eddylo</a>]]></dc:creator>
			<guid isPermaLink="false">https://litdev.uk/mybb/showthread.php?tid=555</guid>
			<description><![CDATA[The URL of the original project: <a href="https://github.com/EkBass/SmallBasicOpenEditionDll/tree/master" target="_blank" rel="noopener" class="mycode_url">https://github.com/EkBass/SmallBasicOpen...ree/master</a><br />
<br />
On the other hand, I see the discussion thread of a new BASIC dialect project in a  BASIC forum:<br />
<br />
<a href="https://itch.io/t/5793515/bazzbasic-was-released" target="_blank" rel="noopener" class="mycode_url">https://itch.io/t/5793515/bazzbasic-was-released</a><br />
<br />
<span style="color: #434343;" class="mycode_color"><span style="font-family: Lato, sans-serif;" class="mycode_font"><span style="font-weight: bold;" class="mycode_b">BazzBasic </span></span></span>is the name of the new langauge. <br />
<br />
Perhaps the developer really abandon SmallBasic Open edition.<br />
<img src="https://litdev.uk/mybb/images/smilies/undecided.png" alt="Undecided" title="Undecided" class="smilie smilie_20" />]]></description>
			<content:encoded><![CDATA[The URL of the original project: <a href="https://github.com/EkBass/SmallBasicOpenEditionDll/tree/master" target="_blank" rel="noopener" class="mycode_url">https://github.com/EkBass/SmallBasicOpen...ree/master</a><br />
<br />
On the other hand, I see the discussion thread of a new BASIC dialect project in a  BASIC forum:<br />
<br />
<a href="https://itch.io/t/5793515/bazzbasic-was-released" target="_blank" rel="noopener" class="mycode_url">https://itch.io/t/5793515/bazzbasic-was-released</a><br />
<br />
<span style="color: #434343;" class="mycode_color"><span style="font-family: Lato, sans-serif;" class="mycode_font"><span style="font-weight: bold;" class="mycode_b">BazzBasic </span></span></span>is the name of the new langauge. <br />
<br />
Perhaps the developer really abandon SmallBasic Open edition.<br />
<img src="https://litdev.uk/mybb/images/smilies/undecided.png" alt="Undecided" title="Undecided" class="smilie smilie_20" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[ZS Small Basic Coder GPT.]]></title>
			<link>https://litdev.uk/mybb/showthread.php?tid=546</link>
			<pubDate>Tue, 06 Jan 2026 05:17:07 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://litdev.uk/mybb/member.php?action=profile&uid=13">z-s</a>]]></dc:creator>
			<guid isPermaLink="false">https://litdev.uk/mybb/showthread.php?tid=546</guid>
			<description><![CDATA[In some free time I quickly made whole knowledge data from XML of extensions and ld physics pdf small basic introduction pdf and some sb samples and made a small basic coding gpt.<br />
Hope you will try it and I think it will make good code with using extension also.<br />
It is also available on GPT store.<br />
<a href="https://chatgpt.com/g/g-695c8cde2dc4819190e17c8935709bed-zs-small-basic-coder" target="_blank" rel="noopener" class="mycode_url">https://chatgpt.com/g/g-695c8cde2dc48191...asic-coder</a><br />
<br />
I will try to make it more good with more resources by making a TXT knowledge base of all litdev extension samples to make it much more better in LD extension.<br />
<br />
And I will be happy if anyone here got time to fetch some samples from old forum small basic website etc and post them here to improve our small basic AI.<br />
You can also post here your made programs and codes for extension usage of different extensions it will be big help.<br />
Also I got email of another BASIC JAM ON itch.io last time was fun and this time I will be using this AI to make a good game.]]></description>
			<content:encoded><![CDATA[In some free time I quickly made whole knowledge data from XML of extensions and ld physics pdf small basic introduction pdf and some sb samples and made a small basic coding gpt.<br />
Hope you will try it and I think it will make good code with using extension also.<br />
It is also available on GPT store.<br />
<a href="https://chatgpt.com/g/g-695c8cde2dc4819190e17c8935709bed-zs-small-basic-coder" target="_blank" rel="noopener" class="mycode_url">https://chatgpt.com/g/g-695c8cde2dc48191...asic-coder</a><br />
<br />
I will try to make it more good with more resources by making a TXT knowledge base of all litdev extension samples to make it much more better in LD extension.<br />
<br />
And I will be happy if anyone here got time to fetch some samples from old forum small basic website etc and post them here to improve our small basic AI.<br />
You can also post here your made programs and codes for extension usage of different extensions it will be big help.<br />
Also I got email of another BASIC JAM ON itch.io last time was fun and this time I will be using this AI to make a good game.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Happy New Year!]]></title>
			<link>https://litdev.uk/mybb/showthread.php?tid=527</link>
			<pubDate>Wed, 31 Dec 2025 10:08:53 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://litdev.uk/mybb/member.php?action=profile&uid=4">AbsoluteBeginner</a>]]></dc:creator>
			<guid isPermaLink="false">https://litdev.uk/mybb/showthread.php?tid=527</guid>
			<description><![CDATA[Dear fans of the wonderful tool for creativity and entertainment, which is the Small Basic programming language.  <img src="https://litdev.uk/mybb/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
<br />
I sincerely congratulate you on the upcoming New Year!<br />
<br />
The year 2025 showed humanity that even the advent of AI has not diminished the value of Small Basic in the world of virtual entertainment, just as the advent of humanoid robots has not changed the value of LEGO construction sets in the physical world.<br />
<br />
Even with the fantastically high development of technology, creative people will always be interested in creating something WITH THEIR OWN HANDS, using LEGO, Arduino, a 3D pen or our Small Basic.<br />
<br />
I wish all such people the greatest creative success in the coming New Year.<br />
<br />
Hooray!!!  <img src="https://litdev.uk/mybb/images/smilies/tongue.png" alt="Tongue" title="Tongue" class="smilie smilie_5" />]]></description>
			<content:encoded><![CDATA[Dear fans of the wonderful tool for creativity and entertainment, which is the Small Basic programming language.  <img src="https://litdev.uk/mybb/images/smilies/smile.png" alt="Smile" title="Smile" class="smilie smilie_1" /><br />
<br />
I sincerely congratulate you on the upcoming New Year!<br />
<br />
The year 2025 showed humanity that even the advent of AI has not diminished the value of Small Basic in the world of virtual entertainment, just as the advent of humanoid robots has not changed the value of LEGO construction sets in the physical world.<br />
<br />
Even with the fantastically high development of technology, creative people will always be interested in creating something WITH THEIR OWN HANDS, using LEGO, Arduino, a 3D pen or our Small Basic.<br />
<br />
I wish all such people the greatest creative success in the coming New Year.<br />
<br />
Hooray!!!  <img src="https://litdev.uk/mybb/images/smilies/tongue.png" alt="Tongue" title="Tongue" class="smilie smilie_5" />]]></content:encoded>
		</item>
	</channel>
</rss>