Nothing::Tiny - a module that does nothing, albeit with no accessor


Nothing-Tiny documentation Contained in the Nothing-Tiny distribution.

Index


Code Index:

NAME

Top

Nothing::Tiny - a module that does nothing, albeit with no accessor overhead or non-core dependencies

SYNOPSIS

Top

Sometimes modules with actual functionality are too slow or use too much memory. Nothing::Tiny aims to balance features with memory usage by doing nothing in the smallest amount of space possible.

Here's how to use it:

   use Nothing::Tiny;

Now you've done nothing, all while not adding any non-core dependencies to your application! Tinylicious!

AUTHOR

Top

Jonathan Rockway <jrockway@cpan.org>

COPYRIGHT

Top


Nothing-Tiny documentation Contained in the Nothing-Tiny distribution.

package Nothing::Tiny;
use strict;
use warnings;

our $VERSION = '1';

1;