- or download this
#!/usr/bin/perl
use warnings;
...
foreach($this_array){
print("$_\n");
}
- or download this
Use of uninitialized value $_ in concatenation (.) or string at derp.p
+l line 7.
- or download this
#!/usr/bin/perl
use warnings;
...
foreach(@this_array){ # note @this_array not $this_array
print("$_\n");
}