Skip to main content

getopts_long/
lib.rs

1// SPDX-FileCopyrightText: <text> © 2020 Alan D. Salewski <ads@salewski.email> </text>
2// SPDX-License-Identifier: GPL-2.0-or-later OR Apache-2.0
3
4//! # getopts-long
5//!
6//! A Rust command line options parsing library inspired by Perl's
7//! Getopt::Long.
8//!
9//! This crate is currently just a place-holder.
10
11#[cfg(test)]
12mod tests {
13    #[test]
14    fn it_works() {
15        assert_eq!(2 + 2, 4);
16    }
17}