in reply to Re^3: How to make it work when "use strict;" is on?
in thread How to make it work when "use strict;" is on?

It works, thanks!
#!/usr/bin/perl use warnings; use strict; our $spud="Wow!"; our @spud=qw(idaho russet); our($potato,@potato); *potato=*spud; print $potato; print "@potato"