What is the use of the Perl Module?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    What is the use of the Perl Module?

    May I know the uses of the Perl Module.

    #2
    A module in Perl is a collection of related subroutines and variables that perform a set of programming tasks.

    Comment


      #3
      Perl modules are a set of connected purposes in a library file. They are precisely designed to be reusable by other modules or programs.

      Comment


        #4
        There are 108,000 modules to use on the Comprehensive Perl Archive Network.
        Perl is a family of script programming languages with a syntax that is comparable to C.

        Comment


          #5
          How to create a Perl module?

          Comment


            #6
            To create the File Logger module, you need to do the following steps:
            1. First, create your module name, in this case, you call it FileLogger.
            2. Second, create a file named modulename.pm.
            3. Third, make the FileLogger module a package by using the syntax: package FileLogger; at the top of the FileLogger.pm file.

            Comment


              #7
              Thanks Aaron Martin

              Comment


                #8

                Can anyone tell me its features?​

                Comment


                  #9
                  Its features are as follows:
                  1) Mission-critical. Used for mission-critical projects in the public and private sectors.
                  2) Object-oriented, procedural and functional. Supports object-oriented, procedural and functional programming.
                  3) Easily extendible.
                  4) Text manipulation.
                  5) Unicode support.
                  6) Database integration.
                  7) C/C++ library interface.
                  Embeddable.

                  Comment


                    #10

                    It has a very simple Object-oriented programming syntax.Various modules are available in a variety of categories, including network, XML processing, CGI, database interface, and so on.​

                    Comment


                      #11

                      Thanks all.​

                      Comment

                      Working...
                      X