xref: /PHP-Parser/test/code/parser/expr/print.test (revision 9a5d5c11)
1Print
2-----
3<?php
4print $a;
5-----
6array(
7    0: Stmt_Expression(
8        expr: Expr_Print(
9            expr: Expr_Variable(
10                name: a
11            )
12        )
13    )
14)
15