Skip to content

imran82ali/islamabad

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

First Welcome from Islamabad

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

islamabad = "0.1.0"

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]
islamabad = "0.1.0"

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

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

following will also work:

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

now cargo run for results

About

No description, website, or topics provided.

Resources

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published