Execute Brain****: Difference between revisions

From Rosetta Code
Content added Content deleted
(This will fix RCBF on the Unimpl Page setup.)
(avoid double-counting nested tasks)
Line 2: Line 2:


An implementation need only properly implement the <nowiki>'[', ']', '+', '-', '<', '>', ',', and '.'</nowiki> instructions. Any cell size is allowed, EOF support is optional, as is whether you have bounded or unbounded memory.
An implementation need only properly implement the <nowiki>'[', ']', '+', '-', '<', '>', ',', and '.'</nowiki> instructions. Any cell size is allowed, EOF support is optional, as is whether you have bounded or unbounded memory.
<br clear=all>


See [[:Category:RCBF]] for all implementations of RCBF on Rosetta Code.
=={{header|ALGOL 68}}==

See [[RCBF/ALGOL 68]].

=={{header|Ada}}==

See [[RCBF/Ada]].

=={{header|BASIC}}==

See [[RCBF/BASIC/QuickBasic]].

=={{header|C++}}==

See [[RCBF/C++]].

=={{header|Common Lisp}}==

See [[RCBF/Common Lisp]].

=={{header|D}}==

See [[RCBF/D]].

=={{header|E}}==

See [[RCBF/E]].

=={{header|Erlang}}==

See [[RCBF/Erlang]].

=={{header|Forth}}==

See [[RCBF/Forth]].

=={{header|Haskell}}==

See [[RCBF/Haskell]].

=={{header|Java}}==

See [[RCBF/Java]].

=={{header|JavaScript}}++

See [[RCBF/JavaScript]].

=={{header|Modula-3}}==

See [[RCBF/Modula-3]].

=={{header|OCaml}}==

See [[RCBF/OCaml]].

=={{header|Perl}}==

See [[RCBF/Perl]].

=={{header|Python}}==

See [[RCBF/Python]].

=={{header|Ruby}}==

See [[RCBF/Ruby]].

=={{header|Standard ML}}==

See [[RCBF/Standard ML]].

=={{header|TI-83 BASIC}}==

See [[RCBF/TI-83 BASIC]].

=={{header|TI-89 BASIC}}==

See [[RCBF/TI-89 BASIC]].

=={{header|Tcl}}==

See [[RCBF/Tcl]].

Revision as of 19:34, 18 December 2009

Task
Execute Brain****
You are encouraged to solve this task according to the task description, using any language you may know.
Execute Brain**** is an implementation of Brainf***. Other implementations of Brainf***.

RCBF is a set of Brainf*** compilers and interpreters written for Rosetta Code in a variety of languages. Below are links to each of the versions of RCBF.

An implementation need only properly implement the '[', ']', '+', '-', '<', '>', ',', and '.' instructions. Any cell size is allowed, EOF support is optional, as is whether you have bounded or unbounded memory.

See Category:RCBF for all implementations of RCBF on Rosetta Code.