good-parser 0.1.0

A simple library that exports a good-parser variable
Documentation
1
2
3
4
5
6
7
use good_parser::PKG_NAME;

fn main() {
    println!("The good-parser value is: {}", PKG_NAME);
    assert_eq!(PKG_NAME, "good-parser");
    println!("Test passed! {} equals '{}'", "PKG_NAME", "good-parser");
}