Execute Brain****/Modula-3: Difference between revisions

Content added Content deleted
m (Fixed syntax highlighting.)
 
Line 3: Line 3:
This interpreter (in [[Modula-3]]) is a [[Rosetta Code:Example Translation|translation]] of the [[RCBF/Ada|Ada RCBF interpreter]], and has the same limits.
This interpreter (in [[Modula-3]]) is a [[Rosetta Code:Example Translation|translation]] of the [[RCBF/Ada|Ada RCBF interpreter]], and has the same limits.


<lang modula3>MODULE Bfi EXPORTS Main;
<syntaxhighlight lang="modula3">MODULE Bfi EXPORTS Main;


IMPORT Stdio, Wr, Rd, Params, FileRd, Text;
IMPORT Stdio, Wr, Rd, Params, FileRd, Text;
Line 135: Line 135:


Wr.PutText(Stdio.stdout, "\n");
Wr.PutText(Stdio.stdout, "\n");
END Bfi.</lang>
END Bfi.</syntaxhighlight>