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.
#!/usr/local/bin/perl -w
open(HANDLE1,">first_File") or die "failed to open first_File, $!\n";
open(HANDLE2,">second_File") or die "failed to open second_File, $!\n";
# simply print to the desired handle
print HANDLE1 "This should go into first_File\n";
print HANDLE2 "This should go into second_File\n";
# or, use 'select HANDLE' to switch between handles,
select HANDLE1;
print "This should go into first_File\n";
select HANDLE2;
print "This should go into second_File\n";
close HANDLE1;
close HANDLE2;