Rustのビルドと実行

hello.rs

// hello.rs

fn main(){
	println!("Hello, world!");
}

$ rustc hello.rs
$ ./hello
Hello, world!