Showing posts with label hello world in rust. Show all posts
Showing posts with label hello world in rust. Show all posts

Sunday, July 17, 2016

Hello World in Rust

In this article I would like to share with you a very classic sample program hello world using Rust as our programming language. To give you some idea Rust programming language was developed and promote by Mozilla Foundation it is a system programming language similar to C and C++ programming languages and open source. Learning how to program in Rust is not difficult but easy to understand once you have a basic understanding on C or C++ programming.

This sample program will display hello world and welcome to rust programming message on the screen. I hope this program will give you a first hand experience how to start write a program in Rust programming language.

Add me at Facebook my address  is jakerpomperada@gmail.com and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.




Sample Program Output


Program Listing

fn main() {
  println!("\n");
  println!("Hello, world!");
  println!("\n");
  println!("\t Welcome To Rust Programming");
  }