.al extension for Perl

This commit is contained in:
Paul Chaignon
2015-05-30 15:07:56 +02:00
parent 53e53880bd
commit ec61a6974f
2 changed files with 14 additions and 0 deletions

View File

@@ -2439,6 +2439,7 @@ Perl:
color: "#0298c3"
extensions:
- .pl
- .al
- .cgi
- .fcgi
- .perl

13
samples/Perl/getchar.al Normal file
View File

@@ -0,0 +1,13 @@
# NOTE: Derived from ../../lib/POSIX.pm.
# Changes made here will be lost when autosplit is run again.
# See AutoSplit.pm.
package POSIX;
#line 318 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/getchar.al)"
sub getchar {
usage "getchar()" if @_ != 0;
CORE::getc(STDIN);
}
# end of POSIX::getchar
1;