BOLT Programming News
The programming language for begginers.
Status: Beta
Brought to you by:
nanobytesinc
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:
datatype Student begin
string Name
number ID
end
I am making sure that you cannot do this:
Student myStudent
myStudent.LastName
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.