錆こんにちは世界

錆こんにちは世界

1、rust hello world

$ mkdir rust-tutorial
$ cd rust-tutorial/
$ cargo new hello-world
     Created binary (application) `hello-world` package
$ cargo run
   Compiling hello-world v0.1.0 (/Users/y50/rust-tutorial/hello-world)
    Finished dev [unoptimized + debuginfo] target(s) in 3.42s
     Running `/Users/y50/rust-tutorial/hello-world/target/debug/hello-world`
Hello, world!

参照:

  1. カーゴブック
元の記事669件を公開 賞賛された194件 127万回

おすすめ

転載: blog.csdn.net/u010953692/article/details/105485055