Connecting Tech Pros Worldwide Help | Site Map

module

  #1  
Old June 27th, 2008, 05:33 PM
Bill Cunningham
Guest
 
Posts: n/a
I am new to perl. In fact I haven't written decent code in perl. But I
would like to write a module. And is the perldoc that comes with Perl at
cpan all you need to write in perl?

Bill


  #2  
Old June 27th, 2008, 05:33 PM
Jürgen Exner
Guest
 
Posts: n/a

re: module


"Bill Cunningham" <nospam@nspam.comwrote:
Quote:
I am new to perl. In fact I haven't written decent code in perl. But I
>would like to write a module.
perldoc perlmod is a good place to start reading.
Quote:
>And is the perldoc that comes with Perl at
>cpan all you need to write in perl?
You don't need perldoc although it certainly comes very handy when
writing Perl code. Technically all you need is an editor to write and
the perl interpreter to run the code.
  #3  
Old June 27th, 2008, 05:33 PM
Bill Cunningham
Guest
 
Posts: n/a

re: module



"Jürgen Exner" <jurgenex@hotmail.comwrote in message
news:ao4e54pndgd17p0uglibqu15kt1g275t0i@4ax.com...
Quote:
>
perldoc perlmod is a good place to start reading.
>
You don't need perldoc although it certainly comes very handy when
writing Perl code. Technically all you need is an editor to write and
the perl interpreter to run the code.
What about a Perl compiler. That's the one thing I have against Perl it
runs on interpreters. Btw what is a POD ?

Bill


  #4  
Old June 27th, 2008, 05:33 PM
Jim Gibson
Guest
 
Posts: n/a

re: module


In article <z0F5k.40584$lE3.7137@trnddc05>, Bill Cunningham
<nospam@nspam.comwrote:
Quote:
"Jürgen Exner" <jurgenex@hotmail.comwrote in message
news:ao4e54pndgd17p0uglibqu15kt1g275t0i@4ax.com...
Quote:

perldoc perlmod is a good place to start reading.

You don't need perldoc although it certainly comes very handy when
writing Perl code. Technically all you need is an editor to write and
the perl interpreter to run the code.
>
What about a Perl compiler. That's the one thing I have against Perl it
runs on interpreters. Btw what is a POD ?
The Perl interpreter compiles your Perl source code before it executes
it. Compiling and execution are done in one step, so there are no nasty
object files and load libraries to mess around with.

POD stands for "plain old documentation". It means unadorned text,
although Perl's POD system does have some minor text appearance
enhancements, such as indenting, bolding, and italicization. But the
basic POD document system allows a module writer, to which you aspire,
to interlace documentation with code with a few, simple compiler
directives. See "perldoc perlpod" for details.

FYI: comp.lang.perl is a defunct newsgroup. You should use
comp.lang.perl.misc for general Perl questions. See also "perldoc -q
newsgroups" for others.

--
Jim Gibson

Posted Via Usenet.com Premium Usenet Newsgroup Services
----------------------------------------------------------
http://www.usenet.com
Closed Thread


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to Upload Files using the CGI.pm Module and Perl KevinADC insights 17 February 3rd, 2009 03:53 AM
Re: imported module no longer available Fredrik Lundh answers 0 July 21st, 2008 10:15 PM
Difference between Class and module Bonzol answers 10 June 27th, 2006 07:15 AM
"Cannot find module" Error Messages in PHP David T. Ashley answers 3 February 5th, 2006 06:55 PM
Get importer module from imported module dody suria wijaya answers 5 July 18th, 2005 10:18 PM