Categories:
Android (1)
Audio (7)
C/C++ (2)
Compression (7)
Database (6)
Document (14)
Email (3)
General (50)
Graphics (17)
Image (8)
Java (1)
Picture (1)
Presentation (7)
Programming (17)
Spreadsheet (11)
Video (8)
Web (13)
Windows (63)
XML (4)
Other Resources:
.PM - File Extension for Perl Module Files
What is PM? PM, short name for Perl Module, is used as the file extension for Perl Module source code files. .PM files are text files that can be opened by Notepad or any text editors. See the sample .PM file included below.
✍: FYIcenter.com
File Extension: .PM
MIME Type: text/plain
File Content: Perl Module
.PM files are Perl Module files, which contains source code for a Perl module Here is a sample .PM Perl Module file with 2 simple methods:
use strict;
use Exporter;
use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
$VERSION = 1.00;
@ISA = qw(Exporter);
@EXPORT = ();
@EXPORT_OK = qw(func1 func2);
%EXPORT_TAGS = ( DEFAULT => [qw(&func1)],
Both => [qw(&func1 &func2)]);
sub func1 { return reverse @_ }
sub func2 { return map{ uc }@_ }
1;
.PM Perl Module file sample: Click sample.pm to download.
Since .PM text files are in text format, you can use Notepad or any text editor to create or modify them. No special software is needed.
For for information on how to use .PM Perl Module files, see links below:
2012-07-10, 7299👍, 0💬
Popular Posts:
What is CS? CS, short name for C Sharp, is used as the file extension for C# (C Sharp) files. .CS fi...
What is ASPX? ASPX, short name for ASP.NET Script, is used as the file extension for ASP.NET Script ...
File extension CLASS is used for Java compiled class files. A CLASS sample file is provided. Free JV...
What is MHT or MHTML? MHT or MHTML, short name for MIME HTML, is used as the file extension for MIME...
What is DOTX? DOTX, short name for Document Template XML, is used as the file extension for files in...