InterviewSolution
Saved Bookmarks
| 1. |
Print hello world using perl also explain it. |
|
Answer» $perl -e 'print "HELLO World\n"' -e REPRESENT perl interpreter at command LINE while $ is prompt here. Perl file will be saved with dot (. pl) pl EXTENSION. |
|