Execute Brain****/Tcl: Difference between revisions

m
Fixed syntax highlighting.
m (Fixed syntax highlighting.)
 
(One intermediate revision by one other user not shown)
Line 1:
{{implementation|Brainf***}}{{collection|RCBF}}[[implementation of task::RCBF| ]]
This [[Tcl]] [[Brainfuck]] interpreter is derived from code on [http://wiki.tcl.tk/9490 The Tcler's Wiki], and is written to be short but not particularly clear.
 
Line 5:
tclsh8.5 bf.tcl helloWorld.bf
<br clear=all>
===Interpreter Implementation===
{{works with|Tcl|8.5}}
<langsyntaxhighlight lang="tcl">package require Tcl 8.5
fconfigure stdout -buffering none
fconfigure stdin -buffering none
Line 56:
}
}
}</langsyntaxhighlight>
9,479

edits