Rust: تفاوت بین نسخه‌ها

از ویکی فارسی اوبونتو
پرش به: ناوبری، جستجو
(اجرا)
سطر ۱۲: سطر ۱۲:
 
{{bc|
 
{{bc|
 
$ cat hello.rs  
 
$ cat hello.rs  
// This is the main function.
 
 
fn main() {
 
fn main() {
    // Statements here are executed when the compiled binary is called.
 
 
    // Print text to the console.
 
 
     println!("Hello World!");
 
     println!("Hello World!");
 
}
 
}
سطر ۲۳: سطر ۱۹:
 
Hello World!
 
Hello World!
 
}}
 
}}
 
  
 
==آموزش==
 
==آموزش==

نسخهٔ ‏۲۳ خرداد ۱۴۰۳، ساعت ۰۰:۰۴

Rust یک زبان برنامه‌نویسی است.

نصب

برای نصب کامپایلر رااست از فرمان زیر استفاده کنید.


$ sudo apt install rustc cargo

اجرا

$ cat hello.rs 
fn main() {
    println!("Hello World!");
}
$ rustc hello.rs 
$ ./hello 
Hello World!

آموزش

پیوند به بیرون