in reply to Re^2: Clarifying the Comma Operator
in thread Clarifying the Comma Operator

Sorry for interrupting, May I know what is meant by TERM?

--Lakshmanan G.

The great pleasure in my life is doing what people say you cannot do.


Replies are listed 'Best First'.
Re^4: Clarifying the Comma Operator
by ig (Vicar) on Jun 08, 2009 at 05:41 UTC

    TERM is one of the macros defined and used in the perl source file toke.c. This macro is used to return lexical tokens which are terms in an expression.

    The subroutines in toke.c constitute the perl lexical analyzer. They are called by the parser to obtain a sequence of tokens from the source of the Perl program being interpreted.

    TERM(WORD) returns a WORD token.