Alt-common-sense-TOBYINK

 view release on metacpan or  search on metacpan

README  view on Meta::CPAN


DESCRIPTION
    Importing common::sense is roughly equivalent to:

       use utf8;
       use strict qw(vars subs);
       use feature qw(say state switch);
       use feature qw(unicode_strings current_sub fc evalbytes);
       no feature qw(array_base);
       no warnings;
       use warnings qw(FATAL closed threads internal debugging pack
                       portable prototype inplace io pipe unpack malloc
                       deprecated glob digit printf layer
                       reserved taint closure semicolon);
       no warnings qw(exec newline unopened);

    Unfortunately the installation process (and to a lesser extent, the
    implementation) for common::sense is fairly crazy.

    Alt::common::sense::TOBYINK is an Alt implementation of common::sense. To
    use it, continue to `use common::sense` in your code, but to install it,

lib/Alt/common/sense/TOBYINK.pm  view on Meta::CPAN

=head1 DESCRIPTION

Importing L<common::sense> is roughly equivalent to:

   use utf8;
   use strict qw(vars subs);
   use feature qw(say state switch);
   use feature qw(unicode_strings current_sub fc evalbytes);
   no feature qw(array_base);
   no warnings;
   use warnings qw(FATAL closed threads internal debugging pack
                   portable prototype inplace io pipe unpack malloc
                   deprecated glob digit printf layer
                   reserved taint closure semicolon);
   no warnings qw(exec newline unopened);

Unfortunately the installation process (and to a lesser extent, the
implementation) for L<common::sense> is fairly crazy.

Alt::common::sense::TOBYINK is an L<Alt> implementation of
L<common::sense>. To use it, continue to C<< use common::sense >>

lib/common/sense.pm  view on Meta::CPAN

		{
			'feature'->import( qw(current_sub fc evalbytes) );
			'feature'->unimport( qw(array_base) );
		}
	}
	
	# warnings
	'warnings'->unimport;
	'warnings'->import(
		qw(
			FATAL closed threads internal debugging pack
			portable prototype inplace io pipe unpack malloc
			glob digit printf layer
			reserved taint closure semicolon
		)
	);
	'warnings'->unimport( qw(exec newline unopened) );
}

1;



( run in 1.113 second using v1.01-cache-2.11-cpan-49f99fa48dc )