Execute Brain****/C++: Difference between revisions

m
Move incorrect message, change sentence to works with template, whitespace
(Undo revision 21844 by GugaTagFixer (Talk))
m (Move incorrect message, change sentence to works with template, whitespace)
Line 1:
{{incorrect}}{{implementation|Brainf***}}{{collection|RCBF}}[[Category:C++]]{{incorrect}}
RCBF is an implementation of Brainf*** originally written in C++ by [[User:Short Circuit|Mike Mol]] and [[User:Mwn3d|Mike Neurohr]], for Rosetta Code. It is licensed under the same license as Rosetta Code itself.
 
Line 6:
RCBF is intended for educational purposes only; There is no guarantee it won't lock up your computer. (Though Mike M thinks he's got that bug ironed out...)
 
*{{works [[with|g++]] |4.1.3 with the GNU C++ Standard Library}}
It has been tested using the following compilers/library combinations:
<lang cpp>// RCBF -- A free Brainfuck interpreter written for Rosetta Code (http://rosettacode.org)
* [[g++]] 4.1.3 with the GNU C++ Standard Library
 
<lang cpp>
// RCBF -- A free Brainfuck interpreter written for Rosetta Code (http://rosettacode.org)
// Created by Mike Mol and Mike Neurohr, and under the same license as Rosetta Code.
 
Line 396 ⟶ 393:
// We never found a close branch
return BRANCH_NOT_FOUND;
}</lang cpp>
}
</lang>
Anonymous user