Re: Concerning passing refs of anonyme Hash to subs...

2008-10-10 Thread Mr. Shawn H. Corey
On Fri, 2008-10-10 at 20:11 +0100, Rob Dixon wrote: > Mr. Shawn H. Corey wrote: > > On Fri, 2008-10-10 at 15:14 +0100, Rob Dixon wrote: > >> Mr. Shawn H. Corey wrote: > >>> > >>> Don't use prototypes. When you need them, you really need them. That's > >>> why they're there. But ( 1 - 1e-42 ) per

Re: Concerning passing refs of anonyme Hash to subs...

2008-10-10 Thread Rob Dixon
Mr. Shawn H. Corey wrote: > On Fri, 2008-10-10 at 15:14 +0100, Rob Dixon wrote: >> Mr. Shawn H. Corey wrote: >>> >>> Don't use prototypes. When you need them, you really need them. That's >>> why they're there. But ( 1 - 1e-42 ) percent of the time you don't need >>> them. >> >> So you need them

Re: Concerning passing refs of anonyme Hash to subs...

2008-10-10 Thread Mr. Shawn H. Corey
On Fri, 2008-10-10 at 15:14 +0100, Rob Dixon wrote: > Mr. Shawn H. Corey wrote: > > > > Don't use prototypes. When you need them, you really need them. That's > > why they're there. But ( 1 - 1e-42 ) percent of the time you don't need > > them. > > So you need them just over 99% of the time? :

Re: Concerning passing refs of anonyme Hash to subs...

2008-10-10 Thread Rob Dixon
Mr. Shawn H. Corey wrote: > > Don't use prototypes. When you need them, you really need them. That's > why they're there. But ( 1 - 1e-42 ) percent of the time you don't need > them. So you need them just over 99% of the time? :D Rob -- To unsubscribe, e-mail: [EMAIL PROTECTED] For addition

Re: Concerning passing refs of anonyme Hash to subs...

2008-10-10 Thread Mr. Shawn H. Corey
On Fri, 2008-10-10 at 13:31 +0100, Deviloper wrote: > I either don´t like prototyping in perl, > but I hate user who don´t read what my methode or function want much > more then prototypes. (This error cost me SO much time... every day > there calls somebody... "your sub don´t work"... only because

Re: Concerning passing refs of anonyme Hash to subs...

2008-10-10 Thread Deviloper
I either don´t like prototyping in perl, but I hate user who don´t read what my methode or function want much more then prototypes. (This error cost me SO much time... every day there calls somebody... "your sub don´t work"... only because he/she passes $ $ instead of $ $ $.) (I don´t like writi

Re: Concerning passing refs of anonyme Hash to subs...

2008-10-10 Thread John W. Krahn
Deviloper wrote: Hi there, Hello, have a look at this example: #!/usr/local/bin/perl use strict; use warnings; my $a_hash = { hund => "Dogge", katze => "Perser", obst => "Banane"