Gentle Introduction to Rust
on C++/Rust
This is a tutorial based on this link
// hello.rs
fn main() {
println!("Hello, World!");
}
$ rustc hello.rs
$ ./hello
Hello, World!
This is a tutorial based on this link
// hello.rs
fn main() {
println!("Hello, World!");
}
$ rustc hello.rs
$ ./hello
Hello, World!