- or download this
(defun perl-boilerplate () "Basic perl template." (interactive)
(if (or (not (file-exists-p (buffer-file-name (current-buffer))))
...
(insert
(concat "#!/usr/bin/perl\n" strictures)))))))
(add-hook 'cperl-mode-hook 'perl-boilerplate)
- or download this
package My;
...
__PACKAGE__
- or download this
#!/usr/bin/perl
use warnings;
use strict;
#use Data::Dumper;