mirror of
				https://github.com/KevinMidboe/linguist.git
				synced 2025-10-29 17:50:22 +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; |