Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
open (FH, 'blah.txt') or do_error('Unable to open file',$!);
sub do_error {
my $error = shift;
my $error2 = shift;
open(ERROR,'error.txt') or die "$!";
print ERROR "$error: $error2 [" .time . "]\n";
close ERROR;
print "$error: $error2 [" .time . "]\n";
}