#!/usr/bin/perl -w # otherScript.pl for ($i = 0; $i < 10; $i++) { print "This is a test at iteration number: $i\n"; } for ($i = 0; $i < 10; $i++) { sleep (1); print "Testing $i, \n"; }