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 v6-alpha;

use Test;

=kwid

The sub doesn't return anything

=cut

plan 1;

sub foo { return (42, 1) }
my $bar = ~foo();
is($bar, '42 1', 'Should not return empty string');