print vs. say
say "hello"; # print a newline at the end. (available since perl 5.10) print "hello"; # print as it is print "hello\n"; # print a newline at the end.
say "hello"; # print a newline at the end. (available since perl 5.10) print "hello"; # print as it is print "hello\n"; # print a newline at the end.