- or download this
print "Welcome $username\n\n";
print "Please chose from the following options:\n";
...
print "2) Logoff\n";
print "------------------------\n";
print "Choice: ";
- or download this
print "Welcome $username\n\n",
"Please chose from the following options:\n",
...
"2) Logoff\n",
"------------------------\n",
"Choice: ";
- or download this
print "Welcome $username
...
2) Logoff
------------------------
Choice: ";
- or download this
print <<EOP;
Welcome $username
...
------------------------
Choice:
EOP