From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

#
# (c) Jan Gehring <jan.gehring@gmail.com>
#
# vim: set ts=2 sw=2 tw=0:
# vim: set expandtab:
use strict;
our $VERSION = '1.12.0.1'; # TRIAL VERSION
sub get {
my ( $class, $name ) = @_;
my $arg = shift @ARGV;
if ( $arg =~ m/^\d+$/ ) {
return $arg;
}
Rex::Logger::debug("Invalid argument for $name");
return;
}
1;