perldoc print :
, , - "+" .
print LIST.
print (split /\./, 'www.stackoverflow.com')
.
print (split /\./, 'www.stackoverflow.com')[0]
LIST , (, , LIST , ). [0] , .
print "abc","def";
print ("abc","def");
print ("abc"), "def";
Perl, , :
warn ($message),"\n" # \n not passed to warn, line # info not suppressed
system ("echo"),"x" # not same as system("echo","x") or system "echo","x"
# or system(("echo"),"x")