On Tue, Jun 7, 2022 at 1:59 AM Tony Cook <tony@develop-help.com> wrote: > There would be no change for "do", it doesn't require truthiness. > C<do> actually does require the return of a true value if you want to detect failures. do(...) or die $!; # File not found, etc die $@ if $@; # Syntax error, runtime exception, etcThread Previous | Thread Next