NAME

Dev::Util::Syntax - Provide consistent feature setup.

VERSION

Version v2.19.11

SYNOPSIS

Provide consistent feature setup. Put all of the "use" setup cmds in one place. Then import them into other modules.

Use this in other modules:

package Dev::Util::Example;

use Dev::Util::Syntax;

# Rest of Code...

This is equivalent to:

package Dev::Util::Example;

use feature :5.18;
use utf8;
use strict;
use warnings;
use autodie;
use open qw(:std :utf8);
use version;
use Readonly;
use Carp;
use English qw( -no_match_vars );

# Rest of Code...

SUBROUTINES/METHODS

importables

Define the items to be imported.

import

Do the import.

AUTHOR

Matt Martini, <matt at imaginarywave.com>

BUGS

Please report any bugs or feature requests to bug-dev-util at rt.cpan.org, or through the web interface at https://rt.cpan.org/NoAuth/ReportBug.html?Queue=Dev-Util. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

perldoc Dev::Util::Syntax

You can also look for information at:

ACKNOWLEDGMENTS

LICENSE AND COPYRIGHT

This software is Copyright © 2024-2025 by Matt Martini.

This is free software, licensed under:

The GNU General Public License, Version 3, June 2007