The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
use TestML -run;

__DATA__
%TestML 1.0

Plan = 6;

Throw(*error).bogus().Catch() == *error;
*error.Throw().bogus().Catch() == *error;
Throw('My error message').Catch() == *error;

*empty == "".Str;
*empty == "";

Label = 'Simple string comparison';
"foo" == "foo";

=== Throw/Catch
--- error: My error message

=== Empty Point
--- empty