From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
|
use warnings qw(FATAL all NONFATAL misc) ; our @EXPORT_OK = qw/FieldSpec/ ;
our @EXPORT = @EXPORT_OK ;
( 'name'
, 'doc'
, 'default'
, 'no_getter'
);
sub new {
my FieldSpec $self = fields::new( shift );
%$self = @_ ;
$self ;
}
1;
|