在本文中,使用Rust语言编写简单的程式,以了解如何编写,储存和编译Rust程式。现在,开启记事本档案并编写以下程式码:
fn main(){
println!("Hello, world!");
}
将上面内容储存到一个档案:rustc hello.rs
Hello, world!
main()
:函式用大括号 函式不包含任何引数,也不返回任何值。main()``main()``{}``main()
println!
:这是一个Rust巨集。如果它呼叫该函式,则它不包含符号:'!'
"Hello World"
:它是作为引数传递给println!
- 开启记事本档案并将程式码写入记事本档案中。
- 使用
.rs
- 开启命令提示字元
- 设定目录的路径,假设专案位于
/home/hema/worsp/rust
- 使用
rustc
- 最后,使用命令
./filename
hema@yiibai:~/worsp/rust$ rustc hello.rs && ./hello
Hello World!
注:如果有遇到「error: could not exec the linker
link.exe