mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +00:00
12 lines
133 B
Perl
12 lines
133 B
Perl
use Test::Base;
|
|
use Test::More;
|
|
|
|
__DATA__
|
|
=== Strict Test
|
|
|
|
--- perl strict
|
|
my $x = 5;
|
|
--- strict
|
|
use strict;
|
|
use warnings;
|
|
my $x = 5; |