prints out each element of @ARGV separately
#!/usr/bin/perl use warnings; use strict; foreach (@ARGV) { print "Element: |$_|\n"; }