module1 0.1.3

Hello, Crates from PIAIC Extra Class Students
Documentation
  • Coverage
  • 0%
    0 out of 2 items documented0 out of 1 items with examples
  • Size
  • Source code size: 13.56 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 978.48 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Homepage
  • imran82ali/module1
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • imran82ali

Sample Crate for Student Learning

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

module1 = "0.1.3"

your cargo.toml file should look like this:

[package]
name = "hello_world"
version = "0.1.0"
authors = ["imran82ali <code.imranali@gmail.com>"]
edition = "2018"

[dependencies]
module1 = "0.1.3"

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

use module1;
fn main() {
    println!("Hello, world!");
    module1::hello();
}

following will also work:

use module1::hello;
fn main() {
    println!("Hello, world!");
    hello();
    }

now cargo run for results