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.
fileno FH
azzazzello, what am i doing wrong. This doesn't work:
use Scalar::Util qw(openhandle);
my $ofh = 'test.out';
open(OFH,">$ofh");
if ( openhandle($ofh) ) {
print "--do something with open file--\n";
}
else{
print "--do something else: file is not open\n";
}