Friday, January 09, 2009
duct tape basic
This is a free basic programming language that is being designed to be cross platform and compiles to fasm assembly... Not much to see so far..
variables are defined with
dim x byte
your two choices are byte and word at the moment
the other thing I have working is a simple for/next loop
for x = 1 to 10
your code here
next
it expects (for the moment) for all code to start at the begining of the line. The compiler is written in python and tested with the 2.5 version.. there may be some non-visable charecter in the fornext example..
Duct tape basic"
variables are defined with
dim x byte
your two choices are byte and word at the moment
the other thing I have working is a simple for/next loop
for x = 1 to 10
your code here
next
it expects (for the moment) for all code to start at the begining of the line. The compiler is written in python and tested with the 2.5 version.. there may be some non-visable charecter in the fornext example..
Duct tape basic"