InterviewSolution
Saved Bookmarks
| 1. |
How Do You Print Out The Next Line From A Filehandle With All Its Bytes Reversed? |
|
Answer» PRINT scalar reverse scalar Surprisingly ENOUGH, you have to put both the reverse and the into scalar CONTEXT separately for this to work. print scalar reverse scalar Surprisingly enough, you have to put both the reverse and the into scalar context separately for this to work. |
|