in reply to Re^2: escaping the @ in an interpolating stringin thread escaping the @ in an interpolating string
use strict; use warnings; my $foo= [ 1, 2, 3 ]; for (@$foo) { say $_ } [download]