Help for this page

Select Code to Download


  1. or download this
    my $args = new Getopt::Declare <<'EOPARAM';
    
    ...
    {
        print  "Using value: ", $args->{'-k'}."\n";
    }
    
  2. or download this
    #!/usr/bin/perl
    use Getopt::Declare;
    ...
        print  "Using value: ", $args->{$_}."\n"
            if $args->{$_};
    }