so what im trying to do is open up 4 files, whether they exist or not, and put in a scalar string into each. i encounter the error "Can't use string (">poo.txt") as a subroutine ref while "strict refs" in use at ./2.pl line 12. " i have tried to call on to qw() with the FILE1, FILE2, etc etc within and calling the array index to the filename but then i get the same error only instead of >poo.txt its FILE1

#!/usr/bin/perl use strict; my $scalar = "We Be Killing Zombies Tonite"; my @array = (">poo.txt", ">moo.txt", ">doo.txt". ">goo.txt"); open(FILE1, $array[0]) or die "uno problemo"; open(FILE2, $array[1]); open(FILE3, $array[2]); open(FILE4, $array[3]); foreach(@array){ print $array[$_] ("$scalar"); }

im not looking for a blunt answer to just fix the problem and move on with my programming exercises, id like to learn why this doesnt work, so i can better understand how i can fix a problem like this in the future.. thanks for all your help guys!


In reply to Output To File with Array help by SirDonkeyPunch

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.