8.2. Hello World

Example 8-1. examples/p526/hello_world.p6

#!/usr/bin/perl6

# Perl5: print
print "Hello World\n";  # still works
say "Hello World";      # the same as print but adds a \n automatically