1 unstable release
0.1.0 |
|
---|---|
0.0.1 | Mar 22, 2024 |
0.0.0 |
|
#40 in #studio
32KB
bws-std
Overview
- General description
- Example
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
use bws_std::counter::Counter;
fn main() -> () {
let mut counter = Counter::new(0);
counter.increase();
counter.increase();
counter.increase();
println!("{}", counter);
}