in reply to What does q{} mean?
++stevieb
This is also one of the cases where B::Deparse can help: perl -MO=Deparse -e 'print q{}' yields
The print statement is there to avoid the value being in void context and optimized away.print ''; -e syntax OK
|
|---|