mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 17:50:22 +00:00
11 lines
117 B
Perl
11 lines
117 B
Perl
use Test::Base;
|
|
|
|
__DATA__
|
|
=== Strict Test
|
|
|
|
--- perl strict
|
|
my $x = 5;
|
|
--- strict
|
|
use strict;
|
|
use warnings;
|
|
my $x = 5; |