<?xml version="1.0" encoding="utf-8"?>
<feed xml:lang="en" xmlns="http://www.w3.org/2005/Atom"><title>Recent posts to updates</title><link href="https://sourceforge.net/p/boltprogramming/updates/" rel="alternate"/><link href="https://sourceforge.net/p/boltprogramming/updates/feed.atom" rel="self"/><id>https://sourceforge.net/p/boltprogramming/updates/</id><updated>2013-02-05T16:53:55.446000Z</updated><subtitle>Recent posts to updates</subtitle><entry><title>Writing the tutorial</title><link href="https://sourceforge.net/p/boltprogramming/updates/2013/02/writing-the-tutorial/" rel="alternate"/><published>2013-02-05T16:53:55.446000Z</published><updated>2013-02-05T16:53:55.446000Z</updated><author><name>Nathaniel Hayes</name><uri>https://sourceforge.net/u/nanobytesinc/</uri></author><id>https://sourceforge.net189410d4c78306ce8c9ed7436950d876f0e376d6</id><summary type="html">&lt;div class="markdown_content"&gt;&lt;p&gt;Right now I am writing the tutorial for BOLT. It is on the Wiki under "tutorial"&lt;/p&gt;&lt;/div&gt;</summary></entry><entry><title>Working on custom data types</title><link href="https://sourceforge.net/p/boltprogramming/updates/2012/11/working-on-custom-data-types/" rel="alternate"/><published>2012-11-14T16:54:22.061000Z</published><updated>2012-11-14T16:54:22.061000Z</updated><author><name>Nathaniel Hayes</name><uri>https://sourceforge.net/u/nanobytesinc/</uri></author><id>https://sourceforge.net148d7eb5994773238052f2560aef32925b35068a</id><summary type="html">Right now I am working on custom datas types. This would allow for me to create data types like the C++ FILE, and allow for me to make the BOLT standard library more effective. 

Right now I am working on making sure that all of the elements you enter are valid, for example:

&gt;&lt;span style="color:blue"&gt;__datatype__&lt;/span&gt; Student &lt;span style="color:blue"&gt;__begin__&lt;/span&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style="color:blue"&gt;__string__&lt;/span&gt; Name
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style="color:blue"&gt;__number__&lt;/span&gt; ID
&lt;span style="color:blue"&gt;__end__&lt;/span&gt;

I am making sure that you cannot do this:
&gt;Student myStudent
&lt;span style="color:red"&gt;myStudent.LastName&lt;/span&gt;

this would be invalid because the datatype "Student" does not have a member named "LastName".

I will be using a simple checking scheme to tell if the dat type has that member.


    </summary></entry></feed>