Rust program basics | Creating a "Hello, World!" Program on Linux
In this blog post, we are going to see, Rust program basics creating a hello world program on Linux. These are the details of the system which we used to create this content. Here we are going to see, 1.Project directory setup. 2.Create a file for hello world program. 3.Compile and run file. Project directory setup: In this particular content the meaning for folder and directory is same. Project directory setup helps to keep workspace clean in system (i.e., computer.) First we are going to create a new directory in home called rust_projects. Next inside rust_projects directory we are going to create a new directory called hello_world. So we can also call hello world directory is one of sub-directory of rust_projects directory. Let we start to create this directories using a terminal. Open your terminal and enter the following commands. The commands to create rust_projects directory is mkdir rust_projects Next let we go to rust_projects directory. The ...