b-f"
Introduction to brain-flak

Prev:compile-brain-flak ( string -- quote: ( state -- state' ) )
Next:brain-flak


Vocabulary
brain-flak

Syntax
b-f"({}[]){<>()}"


Word description
Syntax for a brain-flak program. It will run on abrain-flakstate object. Syntax and semantics of brain-flak are explained inIntroduction to brain-flak.

Errors
Throws an error when the parsed string is not a correct brain-flak program

Examples
USING: accessors brain-flak prettyprint ; { 2 1 3 7 } <brain-flak> b-f"({{}})" active>> .
V{ 13 }

USING: brain-flak prettyprint ; { 1 2 } [ b-f"(({}({}))[({}[{}])])" ] with-brain-flak .
{ 2 1 }


See also
compile-brain-flak, with-brain-flak

Definition