The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

smallnum - Transparent "SmallNumber" support for Perl

VERSION

Version 1.01

SYNOPSIS

use smallnum;

10 + 20.452433483  # 30.45
20.3743543 - 10.1 # 10.27
15 / 5.34, # 2.81
9 * 0.01, # 0.09

...

use smallnum '0.1';

10 + 20.452433483  # 30.5
20.3743543 - 10.1 # 10.3
15 / 5.34, # 2.8
9 * 0.01, # 0.1

...

use smallnum '1';

10 + 20.452433483  # 31
20.3743543 - 10.1 # 10
15 / 5.34, # 3
9 * 0.01, # 0

AUTHOR

LNATION, <thisusedtobeanemail at gmail.com>

BUGS

Please report any bugs or feature requests to bug-smallnum at rt.cpan.org, or through the web interface at https://rt.cpan.org/NoAuth/ReportBug.html?Queue=smallnum. 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 smallnum

You can also look for information at:

ACKNOWLEDGEMENTS

LICENSE AND COPYRIGHT

This software is Copyright (c) 2020->2021 by LNATION.

This is free software, licensed under:

The Artistic License 2.0 (GPL Compatible)