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 warnings FATAL => 'all';
use strict;
use utf8;

use Test::More tests => 6;

use Quote::Ref;

is_deeply qa∘foo bar baz∘, [qw∘foo bar baz∘];
is_deeply qh∘foo bar baz "∘, {qw∘foo bar baz "∘};

is_deeply qa∘foo ∞ ♥ bar∘, [qw∘foo ∞ ♥ bar∘];
is_deeply qh∘foo ∞ ♥ bar∘, {qw∘foo ∞ ♥ bar∘};

is_deeply qa∘\\\∘ \\ \∘ \\∘, [qw∘\\\∘ \\ \∘ \\∘];
is_deeply qh∘\\\∘ \\ \∘ \\∘, {qw∘\\\∘ \\ \∘ \\∘};