parrotcode: The Scheme token parser | |
Contents | Language Implementations | Scheme |
Scheme::Parser - The Scheme token parser
use Scheme::Parser;
my $tree = Scheme::Parser::parse($tokenizer);
The parser reads a list of tokens and turns it into a tree structure. The Nodes of the tree are hash references with either the attribute value
or the attribute children
. children
is an array reference with subbnodes.
Jeffrey Goff, drforr@hargray.com
|