On 2020-08-01 16:12, Joseph Brenner wrote:
> This sort of thing works:
>
> my $test_mode = 0;
> {
> no if $test_mode, 'uninitialized';
> my $nada = undef;
> my $string = "Nothing much: $nada";
> say "$string";
> }
Thank you. :-)
David