• 下载
    https://www.rust-lang.org/zh-CN/tools/install
    win下需安装 Visual Studio 2013以上版本,然后执行rustup-init.exe,选择1
    检测
    rustc -V rustup update rustup self uninstall
    cargo -V 本地文档 rustup doc
    使用国内镜像,在C:\Users\yoby.cargo\config.toml创建文件,文件名就是”config”,而不是”.config”!!!
    [source.crates-io]
    replace-with = 'aliyun'
    [source.aliyun]
    registry = "sparse+https://mirrors.aliyun.com/crates.io-index/"
    vs安装 rls 和 Native Debug 两个扩展,演示
    cargo new hello
    cd hello
    cargo build 生成
    cargo build --release 正式版生成
    cargo run
    cargo check 检测
  • 输出到命令行
fn main() {
    println!("Hello, world!中国");
}
print!("不带换行")
let a=12;
println!("a is {}", a);输出a is 12
println!("a is {0}, a again is {0}", a); 输出两次
 println!("{{}}");  输出{}本身
  • 常见库
    cargo install slint-lsp //slint语言
文档更新时间: 2024-10-05 21:45   作者:Yoby