What is Rust ? How to start ?
Rust ? what is Rust? How to start? As you might already know Rust is a programming language targeted for low-level development , systems programming, web assembly, and also all related to networking. Nevertheless, there are frameworks and libraries that let you do web development with Rust. So lets start with an example to understand Rust , which usually helps programmers to udnerstand code by practice. Setup Rust in your computer First install Rust by the following official website . Then use cargo to create a new project "cargo new new-project" Finally, you will see that a new folder with the name of your project has been created Start programming The goal for this example would be to obtain random names and save them into a json file. As the default main.ts file is shown inside your project folder src , you will see a main function, which works as in C/C++ so your app will be executed in this function. For this example I will create a console app so I will n...