icon.png

bws-std

Overview

General description

The blackwood studio standard library is a general purpose library with viarous tools

Example

A short description about the specific part of the library

A example with a description

```rust use bws_std::counter::Counter; fn main() -> () { let mut counter = Counter::new(0); counter.increase(); counter.increase(); counter.increase(); println!("{}", counter); } ```