#!/usr/bin/perl -w
#######################################################
# lect07_backquotes
#
# just a quickie example using backquotes in an array
# context
#
# modified by Sharon Tuttle from "Learning Perl",
# by Schartz and Phoenix
#
# last modified: 10-7-04
#######################################################
foreach (`ls`)
{
chomp;
print "LOOKY!!! $_\n";
}
# end of lect07_backquotes