in reply to Newbie: query about array assignment
The question marks mean the constants were optimized away since they were used in a void context (as warnings would have told you).perl -MO=Deparse -e '@stuff = "This","That","Other";' @stuff = 'This', '???', '???';
|
|---|