Re: new vs ->new

2007-06-10 Thread Paul Lalli
On Jun 10, 7:12 pm, [EMAIL PROTECTED] (Dr.Ruud) wrote: > "Adriano Ferreira" schreef: > > > Definitely go with > > my $test = Some::Module->new; > > or even with: >my $test = Some::Module::->new(); For the love of $DEITY, why? Paul Lalli -- To unsubscribe, e-mail: [EMAIL PROTECTED] For ad

Re: new vs ->new

2007-06-10 Thread Dr.Ruud
"Adriano Ferreira" schreef: > Definitely go with > my $test = Some::Module->new; or even with: my $test = Some::Module::->new(); -- Affijn, Ruud "Gewoon is een tijger." -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/

Re: can PDF::ReportWriter do this?

2007-06-10 Thread Diamond Li
Hello, Currently, I am trying to generate one PDF report file(Please refer to attachment). Fields section is pretty straightforward. However, header is pretty tricky. Is it possibel to generate attachment PDF file using ReportWriter module? If it is, would you guys like to show me how? By the w

Re: Removing decimal points

2007-06-10 Thread Ken Foskey
On Fri, 2007-06-08 at 19:52 +, ash wrote: > Hello there! > > I need to remove decimal points from numbers. For eg 1.23 or 1.77 > would be just 1. Any suggestion is appreciated. Thank you. $i = 1.77; $j = int $i; print $j; -- Ken Foskey FOSS developer -- To unsubscribe, e-mail: [EMAIL PRO

Re: simple tcp socket server:Is it possible, server wait for '!' sign, not '\n'?

2007-06-10 Thread Mumia W.
On 06/09/2007 09:44 PM, yitzle wrote: [...] If Perl.org wasn't down, you'd want http://perldoc.perl.org/perlvar.html I guess perldoc perlvar will have to do. [...] For the time being, I've placed some of the Perl docs onto my website: http://home.earthlink.net/~mumia.w.18.spam/perldoc/ http://

Re: Removing decimal points

2007-06-10 Thread Rob Dixon
yitzle wrote: On 6/8/07, Xavier Noria <[EMAIL PROTECTED]> wrote: On Jun 8, 2007, at 9:52 PM, ash wrote: I need to remove decimal points from numbers. For eg 1.23 or 1.77 would be just 1. Any suggestion is appreciated. Thank you. Use de int() function. Why does the list attract so many du