The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Number::Object::Plugin::Tax::AU::GST - a Number::Object plugin for Australian GST

VERSION

Version 0.06

SYNOPSIS

    use Number::Object;
    Number::Object->load_components('Autocall');
    Number::Object->load_plugins('Tax::AU::GST');

    my $amount = Number::Object->new(99.95);

    say $amount;              # 99.95
    say "$amount";            # 99.95
    say $amount + 0;          # 99.95
    say $amount->value;       # 99.95

    say $amount->tax;         # 9.995
    say $amount->include_tax; # 109.945

AUTHOR

Matt Koscica, <matt at qx.net.au>

BUGS

Please report any bugs or feature requests to bug-number::object::plugin::tax::au::gst at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Number::Object::Plugin::Tax::AU::GST. 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 Number::Object::Plugin::Tax::AU::GST

You can also look for information at:

ACKNOWLEDGEMENTS

COPYRIGHT & LICENSE

Copyright 2009 Matt Koscica.

This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.

See http://dev.perl.org/licenses/ for more information.