nexworld 0.1.0

A simple library that exports a nexworld variable
Documentation
1
2
3
4
5
6
7
use nexworld::PKG_NAME;

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