Sometimes you just want to count something globally, and you really dont want to worry to much about data races, other race conditions, all the fun stuff.
Add the following dependency to your Cargo.toml file:
toml
[dependencies]
global_counter = "0.1.0"
And use the #[macro_use]
annotation when importing:
```rust
extern crate global_counter; ```
TODO: Add examples
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.