1
vote
2answers
83 views

Perl Global symbol requires explicit package name

I am trying to store my log messages in a hash depending upon message type as shown below: #!/usr/bin/perl use strict; use warnings; my %log; opendir (DIR, '.') or die $!; while (my $file = ...
-1
votes
1answer
49 views

Perl Hash of Hashes Storing References To Within - Can't use string (“”) as a HASH ref

Alright I have a function which generates a hash tree that dumper prints out to look like this: $VAR1 = { 'shaders' => { 'stock_gui.vert' => '', 'stock_font.vert' => '', ...
2
votes
1answer
123 views

perl (Statistics::PCA): Can't use string (“0”) as an ARRAY ref while “strict refs”

I'm trying to use the Statistics::PCA package to conduct a PCA on some genetic variants. The package requires reading in a list of lists (if I understood it correctly, that can be an array of arrays, ...
19
votes
3answers
783 views

Does python have a “use strict;” and “use warnings;” like in perl?

I am learning perl and python... at the same time, not my by design but it has to be done. Question: In a perl script I use(see below) at the head of my txt. #!/usr/bin/env perl use strict; use ...
0
votes
2answers
78 views

Why does strict complain about variables from a required other script?

This is usex.pl: #use strict; require 'x.pl'; print $x; Here is x.pl: #use strict; our $x = 99; 1; It runs fine as shown. If I uncomment the line to use strict in usesx.pl, I get Global ...
3
votes
1answer
711 views

How do I average column values from a tab-separated data file, ignoring a header row and the left column?

First and foremost I apologise if this, or a similar query, has been posted before but I did follow the steps and looked here and beyond and that is why I'm resorting to asking a question, something I ...
2
votes
1answer
272 views

Problems with eval and use

I wrote this code and it works when POE module is installed in the system. #!/usr/bin/perl use strict; use warnings; use POE; ... But I want to determine if this module exist: #!/usr/bin/perl ...
4
votes
2answers
724 views

Perl - Array reference, using strict

I have the following code: my @array = ('a', 'b', 'c'); my $region = \@array; # Returns an array reference my $Value = ${@{$region}}[3]; I am using strict; This code passed smoothly in Perl ...
5
votes
2answers
555 views

How can I avoid this error produced while using 'strict'?

I have a couple of lines of code that work if use strict; is commented out. However, I don't want to have it disabled for the entire script just because of one small section. I need to either recode ...
3
votes
5answers
423 views

Can 'use strict' warn instead of error

When using use strict perl will generate a runtime error on unsafe constructs. Now I am wondering if it is possible to have it only print a warning instead of causing a runtime error ? Or is use ...
2
votes
2answers
507 views

Using Dumper not triggering a failure

when running code like this: use strict; print Dumper "something"; nothing is printed out and no error occurs during compile and runtime. Why does this happen? Why doesn't strict prevent this code ...
5
votes
5answers
979 views

Perl: Why is it slower to declare (my) variables inside a loop?

What's the difference, from the interpreter's POV, between the following the following programs: #!/usr/bin/perl -w use strict; for (1..10000000) { my $jimmy = $_**2; } and #!/usr/bin/perl ...
4
votes
4answers
1k views

Why does Perl's strict not let me pass a parameter hash?

I hava a perl subroutine where i would like to pass parameters as a hash (the aim is to include a css depending on the parameter 'iconsize'). I am using the call: get_function_bar_begin('iconsize' ...
3
votes
5answers
339 views

Why does defined sdf return true in this Perl example?

I tried this example in Perl. Can someone explain why is it true? if (defined sdf) { print "true"; } It prints true. sdf could be any name. In addition, if there is sdf function defined and ...
67
votes
3answers
148k views

How do I break out of a loop in Perl?

I'm trying to use a break statement in a for loop, but since I'm also using strict subs in my Perl code I'm getting an error saying: Bareword "break" not allowed while "strict subs" in use at ...