first commit

This commit is contained in:
Jurij Fajnberg
2021-11-01 17:16:06 +01:00
commit 717e9581ea
26 changed files with 2015 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
package t::Test::Expander::Boilerplate;
use v5.14;
use warnings
FATAL => qw(all),
NONFATAL => qw(deprecated exec internal malloc newline once portable redefine recursion uninitialized);
sub new {
my ($class, @args) = @_;
return bless([\@args], $class);
}
1;