#!/usr/bin/env perl6 my @arr = ; for @arr -> $i is copy { $i = 'asd'; } @arr.perl.say; for @arr -> $i { $i = 'asd'; } @arr.perl.say;