In Perl 6, die still prints an error to STDERR and exits (unless caught), however adding a newline to the end of the error message will produce a stack trace.
The idiom for printing an error message and stopping the program in Perl 6 is:
note "Error Message" and exit 42; # or some other number (except 0)