#!/usr/bin/perl

# @ARGV example
# Call this program with a string of scalear arguments.

for ( $i=0; $i< @ARGV ; $i++){
	print "$ARGV[$i]\n";
}
