Tagged Questions
-1
votes
1answer
188 views
Why some languages return last evaluated expression as default return value? [closed]
I have been trying to find the answer to this. Why do some languages, especially scripting(Perl, Ruby etc.) languages have the default return from the subroutines as the last evaluated expression. ...
4
votes
1answer
314 views
perl interpreter on blackberry phone
is there a way to run perl scripts (just easy samples) on a blackberry?.
I heard a rumor that there are some interpreters for mobile platforms,thanks.
otherwise, anybody knows how-to use android on a ...
4
votes
2answers
351 views
Why to use Parrot (or other VM) if I have an interpreter?
Why should I use VM, like Parrot, for a dynamic language I use (Python, Perl, ...) if I already have an interpreter? What can I potentially gain, for the cost of having different VM between my code ...
5
votes
3answers
571 views
Script languages: Max. Line Length
I have written a script which stores digital signatures in binaries and script files. This question is only regarding scripts: Currently, all these signatures get stored in one single line (a comment) ...
5
votes
2answers
163 views
Why does Perl reallocate memory following this pattern?
The memory addresses for anonymous arrays are naturally re-used by perl. As this example shows, they cycle between two addresses for empty arrays:
$ perl -E "say [] for (1..6)"
ARRAY(0x37b23c)
...
0
votes
0answers
171 views
Perl interpreter
I have an issue with I think either my OS (Vista) or my Perl interpreter. Some time ago, I had to reinstall win's but wasn't able to properly format and do a clean install having no OS disk (as it's ...
2
votes
2answers
550 views
Perl interpreter for PHP
Some of the functions I am planning for a new site of mine are already available as free Perl modules. Hence I am looking at the possibility of using them, rather than coding them again in PHP. I was ...
2
votes
3answers
146 views
Is there an interpreter for sending commands to Selenium?
I'm a Perl programmer doing some web application testing using Selenium. I was wondering if there's some kind of interactive interpreter which would allow me to type Selenium commands at a prompt and ...
3
votes
1answer
155 views
How can I dynamically load perl extensions in an embeded perl interpreter?
I am embeding perl interpreter in my C code (what fun!).
I need to dynamically load perl extensions (an extension that extends perl, written in C). When I run a perl script (using my embeded perl ...
3
votes
1answer
144 views
Parsing and converting 4Test to Perl
I want to convert 4Test scripts to Perl. I have been using the Parse::RecDescent in Perl, but am still overwhelmed at the task. Here is an example.
An example of 4Test is something like:
...
5
votes
5answers
1k 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 ...
3
votes
2answers
515 views
Which perl can I use from the Windows command line?
Can anyone recommend me a Perl interpreter that can run on Windows command line to read LCOV files (and generate a report of some sort)? I looked at genhtml, and it seems to need a lot of setup and ...
10
votes
4answers
7k views
/usr/bin/perl: bad interpreter: Text file busy
This is a new one for me: What does this error indicate?
/usr/bin/perl: bad interpreter: Text file busy
There were a couple of disk-intensive processes running at the time, but I've never seen ...
9
votes
5answers
636 views
Can Perl be “statically” parsed?
An article called "Perl cannot be parsed, a formal proof" is doing the rounds. So, does Perl decide the meaning of its parsed code at "run-time" or "compile-time"?
In some discussions I've read, I ...
