语言/Rust
Hello, World! - Rust 程序设计语言 简体中文版
hello world
-
最简单的尝试
fn main(){ println!("hello world"); }
// 我这里是Mac系统 linux应该也是一样 , windows应该是main.exe
rustc main.rs
即可编译,然后运行该编译完成的main文件即可得到结果
- 利用包管理工具 cargo 创建项目
cargo new hello_cargo
```rust
# Cargo.toml
[package]
name = "beginner_rust"
version = "0.1.0"
authors = ["AH_Pirate <15212726737@163.com>"]
edition = "2018"
# See more keys and their definitions at <https://doc.rust-lang.org/cargo/reference/manifest.html>
[dependencies]
```
这里生成的默认文件是项目的配置文件
- 编译输入
`cargo build`
编译完成的目录在`target/debug/`内
- 启动的话输入
`cargo run`
先编译再运行
- 使用cargo的命令好处是在运行的时候不需要再区分平台\
- 使用总结
- 使用
rustup update
升级最新版本 - 通过
cargo
来创建并运行项目
- 使用