Crates.io | bws-std |
lib.rs | bws-std |
version | 0.0.1 |
source | src |
created_at | 2024-03-22 20:21:05.740463 |
updated_at | 2024-03-22 20:30:14.191174 |
description | This is the blackwood studio standard library |
homepage | https://github.com/blackwood-studio/bws-std |
repository | |
max_upload_size | |
id | 1182965 |
size | 34,161 |
The blackwood studio standard library is a general purpose library with viarous tools
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);
}