Saved Bookmarks
| 1. |
What is the use of say() function in Perl? |
|
Answer» The say() function in Perl is LIKE the print() function which displays any string or variable passed within it as arguments. The only difference between say() and print() is that it automatically APPENDS a NEW line at the end of EVERY output string. |
|