Rust
از ویکی فارسی اوبونتو
Rust یک زبان برنامهنویسی است.
محتویات
نصب
برای نصب کامپایلر رااست از فرمان زیر استفاده کنید.
$ sudo apt install rustc cargo
اجرا
$ cat hello.rs
fn main() {
println!("Hello World!");
}
$ rustc hello.rs
$ ./hello
Hello World!