Rust Hello world


Objective: print “Hello world!” in console
Code:

//main.rs
fn main() {
	println!("Hello world!");
}
Tags:Rust