use v6-alpha; use Test; plan 4; use Benchmark; pass "(dummy instead of broken use_ok)"; { lives_ok { my @a = (1,2,3); my @b = (4,5,6); timethese(100, { => sub { my @r = @a >>+<< @b }, => sub { my @r; for (0..2) { push @r, @a[$_] + @b[$_]; } }, }); } } { lives_ok { timethese(100, { => '1+1', => '2+2', }); } } { lives_ok { timethese(100, { => -> { 1 + 1}, => -> { 2 + 2}, }); } }