Adding samples for new extensions

This commit is contained in:
Arfon Smith
2014-08-13 15:06:17 -07:00
parent e0997b311b
commit 1bdbadc1b3
2 changed files with 458 additions and 0 deletions

11
samples/Perl/strict.t Normal file
View File

@@ -0,0 +1,11 @@
use Test::Base;
__DATA__
=== Strict Test
--- perl strict
my $x = 5;
--- strict
use strict;
use warnings;
my $x = 5;