Rust is the second popular programming lanaguage as per github contributions. check out this link:

Rust is the second popular programming lanaguage as per github contributions. check out this link:

You can check out the release notes of Rust 1.39.0 on github .
Key features
The functions mentioned below are const fn:

Rust is being widely adopted at this point among San Francisco Bay Area companies,. The adoption is low in other areas. Rust has moved from innovator to early adopter quadrants. This is due to its uptake within the infrastructure and networking data plane space. Habitat and Linkerd 2.0 have adopted Rust as their core platform. It is emerging as a natural partner for WebAssembly. This is helping to drive awareness. It is also important that Facebook has chosen to implement its Libra cryptocurrency using Rust.
“Rust definitely seems to have seen growth in the last year, and I’d move it from innovator to early adopter. They’ve been good at positioning it as a partner with Wasm, which is helping, I think.” – Charles Humble, Editor in Chief at InfoQ:

Started helloworld with rust
main.rs
fn main() {
println!("Printing Hello world!");
}
Cargo.toml
[package] name = "hello-rust" version = "0.1.0" authors = ["bhagvan.kommadi"] edition = "2018" [dependencies]
Run the following command:
cargo run
The screen shot of the output will look like this:
