batch3 0.1.2

Batch3 Islamabad Library Package
Documentation
  • Coverage
  • 0%
    0 out of 3 items documented0 out of 1 items with examples
  • Size
  • Source code size: 13.85 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 110.31 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 7s Average build duration of successful builds.
  • all releases: 7s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • Adnan1990/batch3
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • Adnan1990

Batch3

this is a demo rust library published on crates.io

to use this library you have to add following line in dependency section of cargo.toml

batch3 = "0.1.2"

your cargo.toml file should look like this:

[package]
name = "hello_world"
version = "0.1.0"
authors = ["Muhammad Adnan <muhammad.adnan1990@gmail.com>"]
edition = "2018"

[dependencies]
batch3 = "0.1.2"

In src/main.rs you can use like this:

use batch3;
fn main() {
    println!("Hello, world!");
    batch3::islamabad::piaic();
}

following will also work:

use batch3::islamabad;
fn main() {
    println!("Hello, world!");
    islamabad::piaic();
}

now cargo run for results