How to install Rust on Fedora Linux

Rust is a recent programming language focused on performance and memory safety, mainly safe concurrency.

Rust is syntactically like C++.

It provides memory safety without using garbage collection.

Installing Rust on Fedora.

The command below will install the rust compiler and its dependencies.

sudo dnf install rust cargo

Once Rust installs successfully, we can write our first program in Rust and compile and execute it.

Creating a hello.rs file .rs is the file extension used by Rust.

touch hello.rsCode language: CSS (css)

Write this code in the file

fn main() 
{ 
    print!("Hello World!");
    print!("Rust coding day {}", 1); 
}Code language: PHP (php)

Save the file and run the Rust compiler.

rustc hello.rsCode language: CSS (css)

It will compile and create an executable file named after hello.rs as hello.

Execute the hello compiled binary.

./hello

Now you have Rust installed and running.

Happy Coding!