mirror of
				https://github.com/KevinMidboe/linguist.git
				synced 2025-10-29 17:50:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			131 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			131 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
use strict;
 | 
						|
use warnings;
 | 
						|
package DZT::Sample;
 | 
						|
 | 
						|
sub return_arrayref_of_values_passed {
 | 
						|
  my $invocant = shift;
 | 
						|
  return \@_;
 | 
						|
}
 | 
						|
 | 
						|
1;
 |