The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Erlang::Parser::Node::Begin - a block of statements

DESCRIPTION

A block of statements; a glorified parenthesis.

Accessors

exprs

A list of Erlang::Parser::Nodes; the body for this block. The last expression is the value for the block.

Methods

print

Pretty-prints the node to its filehandle argument.

EXAMPLE

        begin
                do_this(),
        xyz:do_that()
        end