#!/usr/bin/env perl
# ABSTRACT: Testing module
# PODNAME: fu-say

use 5.012;
use warnings FATAL => 'all';
use Getopt::Long;
use FASTX::Reader;
use File::Basename;
use FindBin qw($RealBin);

if (defined $ARGV[0] and $ARGV[0] =~/^-?-?version/) {
    say "fu-say \$VERSION";
    say STDERR "Using FASTX::Reader=", $FASTX::Reader::VERSION;
    exit(0)
}
say STDERR $FASTX::Reader::VERSION;
say STDOUT "OK";
exit(1);

__END__

=pod

=encoding UTF-8

=head1 NAME

fu-say - Testing module

=head1 VERSION

version 1.5.6

=head1 AUTHOR

Andrea Telatin <andrea@telatin.com>

=head1 COPYRIGHT AND LICENSE

This software is Copyright (c) 2018-2022 by Andrea Telatin.

This is free software, licensed under:

  The MIT (X11) License

=cut
