print $string . "\n"; # Concatenation with newline. print $string, $/; # List of items to print, with standard line ending. print $string, "\n"; # List of items to print, with newline. # Or more conveniently... print "$string\n"; # Interpolation of a variable and newline.