Help for this page
#!/usr/bin/perl #this program is supposed to take user input put it into an array and +then add ... open (LOG, '>>', 'perlogfile.rtf') or die "Unable to open logfile: $!" +; print LOG @stuff; close (LOG);
open (my $fh, '>>', 'perlogfile.rtf') or die "Unable to open logfile: +$!"; print $fh @stuff; close ($fh);