Bryan R Harris am Donnerstag, 23. Februar 2006 19.30:
> Responding to your references to modules, we haven't used them because we
> can't count on them being there. Obviously my problem, not yours. =)
[...]
There is no must to have them installed in default locations. You can install
them in an
Responding to your references to modules, we haven't used them because we
can't count on them being there. Obviously my problem, not yours. =)
Thanks for the response.
- Bryan
> Hi Bryan
>
> It's a bit lengthy, but I hope it motivates you a bit to look around...
>
>> You mention larger
Bryan Harris am Donnerstag, 23. Februar 2006 16.41:
Hi Bryan
It's a bit lengthy, but I hope it motivates you a bit to look around...
> You mention larger projects, and I've heard about "reusable code"... Is
> that generally done by copy/paste into the script you're working on?
Code copied&pas
>
> -Original Message-
> From: Bryan Harris [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, February 22, 2006 6:47 PM
> To: Beginners Perl
> Subject: Re: simple references question
>
>
>
> Thanks!
>
> Regarding your "note", out of curiosit
n Harris [mailto:[EMAIL PROTECTED]
Sent: Wednesday, February 22, 2006 6:47 PM
To: Beginners Perl
Subject: Re: simple references question
Thanks!
Regarding your "note", out of curiosity, how will it help a lot in the
end?
I've been scripting for almost 5 years now, and have produced
Bryan Harris am Donnerstag, 23. Februar 2006 03.46:
> Thanks!
>
> Regarding your "note", out of curiosity, how will it help a lot in the end?
> I've been scripting for almost 5 years now, and have produced >100 scripts
> that are used in data analysis work by ~15 people, and have never used "use
>
Thanks!
Regarding your "note", out of curiosity, how will it help a lot in the end?
I've been scripting for almost 5 years now, and have produced >100 scripts
that are used in data analysis work by ~15 people, and have never used "use
strict", nor declared any variables with "my". Everybody say
Here's one way, but if you create @f like you want to, then you will end
up working with a copy of your array instead of the original array
passed. That may or may not be what you want to do.
If you want to alter the contents of the original array, you will have
to use $f and dereference it. W
Bryan R Harris wrote:
> I'm trying to pass an array to a subroutine. I'd like the subroutine
> to create "@f" from the "[EMAIL PROTECTED]" that I send it, but I can't seem
> to
> figure out the syntax. Is there a way to replace my "???f???" with
> something to make it work?
>
>