is there any perl module required for the code below , its a code to read and print the contents of a text file. ITs not printing anything, dont know why. it doesnt even show an error.
open(frame,'../frame.txt') or die "error: $!";
while(<frame>)
{
print "$_\n";
}
close(frame);