#!/usr/bin/perl

$| = 1;

eval "use Image::Magick";    # Try to use the Perl module

if ($@) {    # Check eval response
	print "Image::Magick module NOT FOUND\n";
} else {
	print "Image::Magick module OK\n";
}

print "\npress any key to close";
`pause`;


