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

print ''; -e syntax OK
The print statement is there to avoid the value being in void context and optimized away.