前言
rust尝鲜
编程语言学习
在bilibili搜索编程语言
本地文档
rustup doc
quick start
创建文件
➜ rust-helloworld touch main.rs
代码内容
fn main() {
println!("hello world!")
}
编译运行
➜ rust-helloworld rustc main.rs
➜ rust-helloworld ./main
hello world!
➜ rust-helloworld
标签:编程语言,rs,helloworld,学习,Rust,world,main,rust
From: https://www.cnblogs.com/aaron2932/p/16990812.html