Before starting to deal with files let's look at a couple of function that can help us.
exit() allows us to exit the program at any point without the need to run to the last line of the code.
examples/files/exit.p6#!/usr/bin/env perl6 use v6; say "hello"; exit; say "world";