bws-std

Crates.iobws-std
lib.rsbws-std
version0.0.1
sourcesrc
created_at2024-03-22 20:21:05.740463
updated_at2024-03-22 20:30:14.191174
descriptionThis is the blackwood studio standard library
homepagehttps://github.com/blackwood-studio/bws-std
repository
max_upload_size
id1182965
size34,161
(AverageOrangeCat)

documentation

README

icon.png

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);
}
Commit count: 0

cargo fmt