File tree Expand file tree Collapse file tree 4 files changed +58
-0
lines changed
Expand file tree Collapse file tree 4 files changed +58
-0
lines changed Original file line number Diff line number Diff line change @@ -301,6 +301,7 @@ test_language_driver html
301301test_language_driver java
302302test_language_driver objc
303303test_language_driver pascal
304+ test_language_driver perl
304305test_language_driver php
305306test_language_driver python
306307test_language_driver ruby
Original file line number Diff line number Diff line change 1+ <BOLD>diff --git a/pre b/post<RESET>
2+ <BOLD>index f6610d3..e8b72ef 100644<RESET>
3+ <BOLD>--- a/pre<RESET>
4+ <BOLD>+++ b/post<RESET>
5+ <CYAN>@@ -4,8 +4,8 @@<RESET>
6+
7+ package Frotz;<RESET>
8+ sub new {<RESET>
9+ my <GREEN>(<RESET>$class<GREEN>, %opts)<RESET> = <RED>shift<RESET><GREEN>@_<RESET>;
10+ return bless { <GREEN>xyzzy => "nitfol", %opts<RESET> }, $class;
11+ }<RESET>
12+
13+ __END__<RESET>
Original file line number Diff line number Diff line change 1+ # !/usr/bin/perl
2+
3+ use strict;
4+
5+ package Frotz ;
6+ sub new {
7+ my ($class , %opts ) = @_ ;
8+ return bless { xyzzy => " nitfol" , %opts }, $class ;
9+ }
10+
11+ __END__
12+ =head1 NAME
13+
14+ frotz - Frotz
15+
16+ =head1 SYNOPSIS
17+
18+ use frotz;
19+
20+ $nitfol = new Frotz();
21+
22+ =cut
Original file line number Diff line number Diff line change 1+ # !/usr/bin/perl
2+
3+ use strict;
4+
5+ package Frotz ;
6+ sub new {
7+ my $class = shift ;
8+ return bless {}, $class ;
9+ }
10+
11+ __END__
12+ =head1 NAME
13+
14+ frotz - Frotz
15+
16+ =head1 SYNOPSIS
17+
18+ use frotz;
19+
20+ $nitfol = new Frotz();
21+
22+ =cut
You can’t perform that action at this time.
0 commit comments