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

m
Fixed syntax highlighting.
(Direct language-to-language translations likely don't show off the target language's paradigms very well. This ought to be discussed and noted.)
m (Fixed syntax highlighting.)
 
(2 intermediate revisions by 2 users not shown)
Line 1:
{{implementation|Brainf***}}{{collection|RCBF}}[[Category:Modula-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.
 
<langsyntaxhighlight lang="modula3">MODULE Bfi EXPORTS Main;
 
IMPORT Stdio, Wr, Rd, Params, FileRd, Text;
Line 135:
 
Wr.PutText(Stdio.stdout, "\n");
END Bfi.</langsyntaxhighlight>
9,485

edits