#! /usr/bin/env perl
# ABSTRACT: Perl utility to interact with OpenData ShortNumberInfo web service
# PODNAME: short_number_info
use v5.37.9;
my $short_number =
OpenData::ShortNumberInfo -> new( number => $ARGV[0] );
say $short_number -> name;
__END__
=pod
=encoding UTF-8
=head1 NAME
short_number_info - Perl utility to interact with OpenData ShortNumberInfo web service
=head1 VERSION
version 0.230470
=head1 AUTHOR
Elvin Aslanov <rwp.primary@gmail.com>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2023 by Elvin Aslanov.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut