#!usr/bin/perluse warnings;use strict;my $line = "25 / 0";eval ( $line ); print "There is an error:\n" if $@;print $@;