Talk:Execute Brain****/BASIC/QuickBasic

From Rosetta Code
Revision as of 18:04, 4 April 2008 by 168.254.225.254 (talk) (New page: My name's segin <segin2005@gmail.com> and I wrote a Brainfuck interpeter in C, then rewrote it in FreeBASIC (it's almost exactly the same). It includes one extensions, a '0' instruction wh...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

My name's segin <segin2005@gmail.com> and I wrote a Brainfuck interpeter in C, then rewrote it in FreeBASIC (it's almost exactly the same). It includes one extensions, a '0' instruction which zeros out the memory at the current cell. The current implementation is not Turing complete, however, but it's fast.

WARNING!!! It uses a lot of pointer arthimetic and is not secure, i.e. "<+" is all the code needed to overflow since there's no bounds checking.