#!/usr/bin/env perl
use v5.10;
use strict;
use warnings;
use App::QuoteCC;

# Show help if run without arguments
@ARGV = qw(--help) unless @ARGV;

exit(App::QuoteCC->new_with_options->run // 0);

=encoding utf8

=head1 NAME

quotecc - Command-line interface L<App::QuoteCC>

=head1 DESCRIPTION

See the documentation for L<App::QuoteCC> for more information.

=head1 AUTHOR

E<AElig>var ArnfjE<ouml>rE<eth> Bjarmason <avar@cpan.org>

=head1 LICENSE AND COPYRIGHT

Copyright 2010 E<AElig>var ArnfjE<ouml>rE<eth> Bjarmason <avar@cpan.org>

This program is free software, you can redistribute it and/or modify
it under the same terms as Perl itself.

=cut
