File: PerlScript.pm

package info (click to toggle)
libapache-asp-perl 2.63-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 4,120 kB
  • sloc: perl: 6,044; php: 409; sh: 62; lisp: 22; makefile: 10
file content (10 lines) | stat: -rw-r--r-- 142 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
package Apache::ASP::Lang::PerlScript;

sub new { 
    my($class, %args) = shift;
    bless \%args, $class;
};

sub CommentStart { '#' };

1;