Help for this page
sub context {wantarray ? "LIST" : "SCALAR"} my $context = (context); print $context, "\n"; __END__ SCALAR
sub context {wantarray ? "LIST" : "SCALAR"} my($context) = context; print $context, "\n"; __END__ LIST