DEV Community

Cover image for Learn Rust Programming Language
Morshedul Munna
Morshedul Munna

Posted on

Learn Rust Programming Language

Lets Start Learning Rust Programming Language

Installing rustup on Windows

Go To the Link and Downloads Rustup exe file.
https://www.rust-lang.org/tools/install

Image description

Run The exe File and Type 1 Then Press Enter. installing...................

Installing rustup on Linux or macOS

Run The Bellow Commend in your terminal.

curl --proto '=https' --tlsv1.3 https://sh.rustup.rs -sSf | sh
Enter fullscreen mode Exit fullscreen mode

To check whether you have Rust installed correctly, open a shell and enter this line:

rustc --version
Enter fullscreen mode Exit fullscreen mode

Updating and Uninstalling
Once Rust is installed via rustup, when a new version of Rust is released, updating to the latest version is easy. From your shell, run the following update script:

rustup update
Enter fullscreen mode Exit fullscreen mode

To uninstall Rust and rustup, run the following uninstall script from your shell:

rustup self uninstall
Enter fullscreen mode Exit fullscreen mode

learn more From official Book
Rust Book

Heroku

Build apps, not infrastructure.

Dealing with servers, hardware, and infrastructure can take up your valuable time. Discover the benefits of Heroku, the PaaS of choice for developers since 2007.

Visit Site

Top comments (0)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay