On Saturday, November 29, 2003, at 10:15 pm, Elizabeth Mattijsen wrote: > > $ perl -MO=Deparse -e 'BEGIN { foo => "bar" }' > sub BEGIN { > 'foo', 'bar'; > } > -e syntax OK > > $ perl -MO=Deparse -e 'CLONE { foo => "bar" }' > do { > 'foo', 'bar' > }->CLONE; > -e syntax OK > Because CLONE/DESTROY are called on objects, the mere presence of them does not affect the compilation. ArthurThread Previous | Thread Next