Hello, world!

In Perl 5:
Writing \n at the end of every print statement is very common
print "Hello, world!\n";

In Perl 6:
the new say keyword saves you from having to do that
An easy thing made easier
say "Hello, world!";

Type :next to continue