#studio #standard #std #description #icons #blackwood #bws

yanked bws-std

This is the blackwood studio standard library

1 unstable release

0.1.0 Mar 22, 2024
0.0.1 Mar 22, 2024
0.0.0 Mar 22, 2024

#40 in #studio

Custom license

32KB

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);
}

No runtime deps