in reply to Useless use of private variable in void context at
You are using a C style for loop. The first element of the for loop header is an initialization statement, but $i doesn't actually do anything - it is a variable used in a silly place (void context) because the value isn't used there.
But, you'd be much better to use a Perl loop:
for my $i (0 .. 5006) { ... }
which makes what is going on much clearer. But for your particular problem you could:
#!/bin/perl use strict; use warnings; my $thing = join '', map{qw(a t c g)[rand 4]} 1 .. 5007; my $fName = "./test"; open my $outFile, '>', $fName or die "Can't create '$fName': $!\n"; print $outFile $thing; close $outFile;
Note the three parameter open, lexical file handle and a check that the open succeeded.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Useless use of private variable in void context at
by Anonymous Monk on Nov 23, 2014 at 22:54 UTC | |
|
Re^2: Useless use of private variable in void context at
by RonW (Parson) on Nov 24, 2014 at 18:10 UTC | |
by GrandFather (Saint) on Nov 24, 2014 at 20:21 UTC |