This is the revision history for context in <*:##NULL>

factoid_idsubjectcopulapredicateauthornamespace
10387 context is See http://perl.plover.com/context.html. In a nutshell: When Perl evaluates an expression, it first looks to see whether a scalar, a list, or nothing (void) is expected as the return value, and the expression is evaluated accordingly. For example, in $x = foo(); @x = foo(); foo(); , foo() is evaluated respectively in scalar, list, and void context. See also the wantarray function in perlfunc. pink_mist
10386 context is See http://perl.plover.com/context.html. In a nutshell: When Perl evaluates an expression, it first looks to see whether a scalar, a list, or nothing (void) is expected as the return value, and the expression is evaluated accordingly. For example, in $a = foo(); @a = foo(); foo(); , foo() is evaluated respectively in scalar, list, and void context. See also the wantarray function in perlfunc. pink_mist
9877 context is See http://perl.plover.com/context.html. In a nutshell: When Perl evaluates an expression, it first looks to see whether a scalar, a list, or nothing (void) is expected as the return value, and the expression is evaluated accordingly. For example, in $a = foo(); @a = foo(); foo(); , foo() is evaluated respectively in scalar, list, and void context. See also the wantarray function in perlfunc. lucs
3302 context is http://perl.plover.com/context.html perlbot